My Grails 3 / VueJS项目有页面编码问题(我的第一页是index.html)
在尝试了很多解决方案之后,我发现在html mime-mapping中添加“; charset = utf-8”,在tomcat中 conf / web.xml :
<mime-mapping>
<extension>html</extension>
<mime-type>text/html;charset=utf-8</mime-type>
</mime-mapping>
当我在AWS上部署时,我想知道我的战争如何处理这种配置。
我看到这个链接https://docs.grails.org/latest/guide/theWebLayer.html#contentNegotiation在grails应用程序中配置mime-mapping,但这不起作用,我不知道这是否是正确的方法。