※ 引述《qoorocker (rockers)》之銘言:
: 目前我在處理 template 中 include 時所需傳入的參數
: {% include "form.html" with action={% url "blog:create_comment" %} only %}
: 似乎沒辦法處理 inlcude tag 似乎沒辦法優先處理完 url tag導致出錯
: 錯誤訊息
: Could not parse the remainder: '{%' from '{%'
: 好像沒辦法 tag 中 再加 tag, 不知道大家是怎麼處理的
確實不行, 這種狀況通常是用 url ... as 來處理
https://docs.djangoproject.com/en/dev/ref/templates/builtins/#url
{% url 'blog:create_comment' as action_url %}
{% include 'form.html' with action=action_url only %}