我想将 python 列表作为参数传递给 JS 函数。无论我尝试什么,它都会给我“未终止的字符串文字”。我不知道出了什么问题。
我的python代码是(.py文件):
request.filter+= '<input type="checkbox" name="select_all" onclick=selectAll(%s) />Select All <br/>' %(str(list))
我的 .pt 文件具有 javascript 功能,selectAll(type)
.
我尝试使用simplejson.JSONEncoder().encode(list)
which 将列表转换为 json 格式也无济于事。
请帮助...
谢谢,史瑞亚