我正在努力为我的Meteor应用添加重音字符兼容性,并遇到了几个问题。在尝试解决某些问题时,我意识到在使用JavaScript中的帮助程序时,我甚至无法使用字符代码。当我运行以下代码时:
HTML:
<template name="home">
<p>
This is á tést
<br>
{{testChar}}
<br>
</p>
</template>
JavaScript的:
Template.home.helpers({
testChar: function(){
//testArray = ["this is á tést"];
//return testArray[0];
return "This is á tést";
}
})
我明白这一点:
这是átést 这是&amp; aacute t&amp; eacutest (分号也显示在网页上,我只是删除了它们,这样这个文本编辑器就不会显示两次相同的东西了(这正是我想让我的网站做的事情)。
感谢您的帮助