我正在编写一个 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>
inmytemplate.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 块,并让它在页面模板上呈现吗?
谢谢!