我想在Visual Studio 2019中测试新的django项目。但是当我在模板中添加“ó”或“±”字符时,出现错误“'utf-8'编解码器无法解码位置280的字节0xf3:无效连续字节”
我自己的项目在VS Code上运行良好。但这不是VS 2019预先制作的。
{% extends "app/layout.html" %}
{% block content %}
<h2>{{ title }}.</h2>
<h3>{{ message }}</h3>
<address>
One Microsoft Way<br />
Redmond, WA 98052-6399<br />
<abbr title="Phone">P:</abbr>
425.555.0100
</address>
<address>
<strong>Support: ó</strong> <a href="mailto:Support@example.com">Support@example.com</a><br />
<strong>Marketing:</strong> <a href="mailto:Marketing@example.com">Marketing@exampless.com</a>
</address>
{% endblock %}
答案 0 :(得分:0)
我知道这是怎么回事。 除HTML文件外,所有内容都使用正确的编码,因此只需另存为utf-8编码即可,一切正常。