我正在编写一个Django模板过滤器。我想插入一些JavaScript。简而言之:有没有办法在此过滤器中添加Sekizai“js”块,但是在页面模板上定义的“js”块中进行渲染?
为了让我的问题更清楚,以下过滤器可以实现我想要的功能,但没有Sekizai :(为简单起见省略了自动转义)
from django import template
from django.template import Context
register = template.Library()
@register.filter
def myfilter(text):
context = { "text": text }
myhtml = get_template('mytemplate.html')
return myhtml.render(Context(context))
其中mytemplate.html
包含一些javascript,例如:
<canvas id="xyz" width="200" height="200"></canvas>
<script>
function drawCircle(context, radius, centerX, centerY, color) {
context.beginPath();
context.arc(centerX, centerY, radius, 0, 2 * Math.PI);
context.fillStyle = color;
context.fill();
}
var canvas = document.getElementById('xyz');
var context = canvas.getContext('2d');
drawCircle(context,50,100,100,"blue");
</script>
这很好用。
但是,对于Sekizai,我希望将<script>...</script>
中的mytemplate.html
添加到“js”块中:
{% addtoblock "js" %}<script>...</script>{% endaddtoblock %}
(使用Sekizai还需要更改过滤器:
from sekizai.context import SekizaiContext
...
return myhtml.render(SekizaiContext(context))
)
但是这不起作用,因为模板过滤器没有“js”块 - 所以javascript永远不会被渲染。但是,在更大的图片中有一个“js”块,例如正在从模板中调用过滤器,如下所示:
{% load sekizai_tags %}
<head>...</head>
<body>
{{ info|myfilter }}
{% render_block "js" %}
</body>
所以...有解决这个问题的方法吗?我可以在模板过滤器中添加Sekizai块,并在页面模板上进行渲染吗?
谢谢!
答案 0 :(得分:1)
Django模板过滤器不会继承全局模板上下文,但inclusion tags可以(如果您在takes_context=True
装饰器中设置inclusion_tag
)。
我建议您重构代码以使用包含标记而不是过滤器,在这种情况下,sekizai阻止 可能 工作。