1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

『python django超入門』のNoReverseMatchエラーについての解説

Posted at

前置き

テキスト『python django超入門』(秀和システム)をやっているところで、テキスト通りに入力してエラーが発生しました。出版社提供の正誤表に記載がなかったので勉強を兼ね投稿させていただきました。
テキストではhelloアプリケーションを作成しています。

実行環境

django:3.0.2
python:3.7.4
OS:macOS Mojave 10.14.6

エラー内容

それは、2-2のP.82(複数ページの移動)をやっていた時に起こりました。

index.html
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="utf-8">
    <title>{{ title }}</title>
</head>
<body>
    <h1>{{ title }}</h1>
    <p>{{ msg }}</p>
    <p><a href="{% url goto %}">{{ goto }}</a></p>
</body>
</html>
views.py
# 修正前
# index()のみ抜粋
def index(request):
    params = {
        'title': 'Hello/index',
        'msg': 'これは、サンプルで作ったページです。',
        'goto': 'next',
    }
    return render(request, 'hello/index.html', params)

この状態でindex.htmlにアクセスすると下記エラーが発生しました。

NoReverseMatch at /hello/
Reverse for 'next' not found. 'next' is not a valid view function or pattern name.

「next」って??と怒られています。。。
#おかしいな、何度見直してもテキスト通りなんだけど。。。

原因、解決方法

結論から書くと、views.py内の'goto'の書き方が原因でした。
下記の通りに修正したら正常になりました。

views.py
# 5行目
# 変更前:
'goto': 'next',

# 変更後:
'goto': 'hello:next',

実行結果画面:
実行結果画面

リンク部分の表示がテキストと違っていますが、そこは本質ではないのでここでは触れません。
(テキストでは「next」だけが表示されることになっている)
原因は、index.html内のテンプレート{% url goto %}部分に正しい書式で送信されていないためでした。
goto部分の書式は'アプリ名:name'となるはずが、nameしか来ていないので不整合が起きていました。

あとがき

上記は出版社サポートページの正誤表に記載がなく、同じ部分でつまづく人がいるかもと思い、自身の勉強を兼ねて投稿させていただきました。
私自身djangoはまだ勉強中ですので、ツッコミなどありましたらお願いしますm(_ _)m

1
1
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?