Meteor中的重音字符

时间:2015-07-06 19:36:18

标签: javascript html meteor

我正在努力为我的Meteor应用添加重音字符兼容性,并遇到了几个问题。在尝试解决某些问题时,我意识到在使用JavaScript中的帮助程序时,我甚至无法使用字符代码。当我运行以下代码时:

HTML:

<template name="home">
<p>
This is &aacute; t&eacute;st
<br>
{{testChar}}
<br>
</p>
</template>

JavaScript的:

Template.home.helpers({
testChar: function(){
//testArray = ["this is &aacute; t&eacute;st"];
//return testArray[0];
return "This is &aacute; t&eacute;st";
}
})

我明白这一点:

  

这是átést   这是&amp; aacute t&amp; eacutest   (分号也显示在网页上,我只是删除了它们,这样这个文本编辑器就不会显示两次相同的东西了(这正是我想让我的网站做的事情)。

感谢您的帮助

0 个答案:

没有答案