我有一个要渲染的模板,但由于它也有一些标签,因此很难访问特定的字符串。代码如下:
template="""
<select>
<option {% if record.views = '%s' %} selected {% endif %}>'%s'
</select>
"""%(pop, pop)
在这里,我想要 pop 的值,但它给出了一个错误:
Caught TypeError while rendering: not enough arguments for format string
任何解决方案我如何访问这些字符串格式。谢谢