Django - 模板标签中不可用的上下文包括
Posted
技术标签:
【中文标题】Django - 模板标签中不可用的上下文包括【英文标题】:Django - Context not available in template tag include 【发布时间】:2012-12-09 02:09:01 【问题描述】:<form class="signup" id="signup_form" method="post" action="% url 'account_signup' %">
form.subscription_year_plan
<div class="page1"> % include "account/signup_1.html" % </div>
<div class="page2"> % include "account/signup_2.html" % </div>
</form>
这是我的 html 的一部分。 form.subscription_year_plan
在signup_1.html
的外部和内部可用,但在signup_2.html
内部不可用。
有什么问题?
【问题讨论】:
signup_2.html
中可能有错字。你能附上它的来源吗?
知道了。我试图在 signup_2.html 中的 div
中使用 form.subscription_year_plan
,该文件已准备好由 ajax 填充。
您可以将其添加为答案然后接受它,这样问题就不会保持开放吗?
【参考方案1】:
知道了。我试图在 signup_2.html 的 div 中使用 form.subscription_year_plan
,该 div 正在由文档准备好的 ajax 填充。
【讨论】:
以上是关于Django - 模板标签中不可用的上下文包括的主要内容,如果未能解决你的问题,请参考以下文章
JQuery 在 Django 自定义模板标签的模板中不起作用
Request.GET 在自定义 HTML Django Rest Framework 渲染器模板中不可用
我将如何在 Django 模板标签中使用模板上下文变量的值? [复制]