在将HTMLTemplateFormatter用于DataTable时,我需要一些帮助。 在为HTMLTemplateFormater定义模板参数时,我尝试使用条件语句,例如:
template="""
<p style="color:<%=
(function colorfromimp(){
if ((Column Name=='A1')) // variable name
{return('red')}
}()) %>;">
<%= value %>
</p>
"""
formatter = HTMLTemplateFormatter(template=template)
使用列名更新数据表中的列值。但是,看来列名不能有空格。有没有一种方法可以逃脱空间,我尝试使用小写的列,它确实起作用。
谢谢!