อีกทางเลือกหนึ่งที่ไม่ต้องการให้คุณใส่ทุกอย่างในบล็อก "with" คือการสร้างแท็กที่กำหนดเองที่เพิ่มตัวแปรใหม่ให้กับบริบท ในขณะที่:
class SetVarNode(template.Node):
def __init__(self, new_val, var_name):
self.new_val = new_val
self.var_name = var_name
def render(self, context):
context[self.var_name] = self.new_val
return ''
import re
@register.tag
def setvar(parser,token):
# This version uses a regular expression to parse tag contents.
try:
# Splitting by None == splitting by spaces.
tag_name, arg = token.contents.split(None, 1)
except ValueError:
raise template.TemplateSyntaxError, "%r tag requires arguments" % token.contents.split()[0]
m = re.search(r'(.*?) as (\w+)', arg)
if not m:
raise template.TemplateSyntaxError, "%r tag had invalid arguments" % tag_name
new_val, var_name = m.groups()
if not (new_val[0] == new_val[-1] and new_val[0] in ('"', "'")):
raise template.TemplateSyntaxError, "%r tag's argument should be in quotes" % tag_name
return SetVarNode(new_val[1:-1], var_name)
สิ่งนี้จะช่วยให้คุณสามารถเขียนสิ่งนี้ในเทมเพลตของคุณ:
{% setvar "a string" as new_template_var %}
โปรดทราบว่าสิ่งนี้ส่วนใหญ่นำมาจากที่นี่