NoReverseMath at xxxx

django Exception Published at Feb. 17, 2025, 1:11 a.m. by admin@senrigan.org

{% with product=item.product %}書くの忘れたらNoReverseMatchになった。Djangoのwithってなんだ?

NoReverseMatch at /cart/
Reverse for 'cart_remove' with arguments '('',)' not found. 1 pattern(s) tried: ['cart/remove/(?P<product_id>[0-9]+)/\\Z']
Request Method: GET
Request URL:    http://127.0.0.1:8000/cart/
Django Version: 5.1.6
Exception Type: NoReverseMatch
Exception Value:    
Reverse for 'cart_remove' with arguments '('',)' not found. 1 pattern(s) tried: ['cart/remove/(?P<product_id>[0-9]+)/\\Z']
Exception Location: /senrigan/.venv/lib/python3.12/site-packages/django/urls/resolvers.py, line 831, in _reverse_with_prefix
Raised during:  cart.views.cart_show

withってファイル開いたらブロック終了時にファイルを自動で閉じてくれるコンテキストマネージャだよね。でもDjangoのwithはテンプレートの中で複雑な変数をシンプルな変数名でキャッシュするもの。ビルトインのテンプレートタグなので、コンテキストマネージャとは全然関係がない?

with

ただ、これでitem.productをproductでアクセスできるようにしてるので、withなしに

        <form action="{% url 'cart:cart_remove' product.id %}" method="post">

product.idでアクセスしようとしたらそりゃエラーになるという、いつもながらのしょうもないミス。