Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
関数の戻り値をテンプレートタグ{% url ..}付きの変数にキャッシュしようとしています。with
{% url ..}
with
これが私のコードです:{%with path = url "show_cart"%} {%endwith%}
そして、このコードで私はこの例外を受け取ります:TemplateSyntaxError u'with' received an invalid token: u'"show_cart"'
TemplateSyntaxError
u'with' received an invalid token: u'"show_cart"'
url関数の結果を変数に割り当てることはできますか?
url
あなたはこれを行うことができます。この構文に必要な Django のバージョンがわからない:
{% url 'view' as the_url %} {{ the_url }}
Doc here