美文网首页
django format_html 数据包含大括号报keyer

django format_html 数据包含大括号报keyer

作者: ling67_ | 来源:发表于2018-07-18 12:04 被阅读0次

    代码:

    ss='''<script>function msg(){alert("test")}    </script><input type = button onClick="msg()"></input>'''

    format_html(ss)

    报错信息为:

        KeyError : 'alert("test")'

    解决方案:

    大括号{改成双大括号{{

    即:ss='''<script>function msg(){{alert("test")}}</script><input type = button onClick="msg()"></input>'''

    相关文章

      网友评论

          本文标题:django format_html 数据包含大括号报keyer

          本文链接:https://www.haomeiwen.com/subject/etdopftx.html