我正在从文件中读取一个字符串:
a = '<script>closedSign: \'<img src="/static/images/drop-down.png" style="margin-top: -3px;" />\'</script>'
现在,当我跑步时
BeautifulSoup(a)
<script>closedSign: '<img src="/static/images/drop-down.png" style="margin-top: -3px;" />'</script>
因此,<img
被 HTML 转义到<img
我怎样才能避免这种情况?