我正在尝试使用ReactJS
JSX渲染一个带有重音字符的元素,但它没有返回我想要的。
我的JSX:
var Orcamento = React.createClass({
render: function() {
return (
<div>
<h1>Orçamento</h1>
</div>
);
}
});
React.render(
<Orcamento/>,
document.getElementById("orcamento")
);
我呈现的javascript:
var Orcamento = React.createClass({displayName: "Orcamento",
render: function() {
return (
React.createElement("div", null,
React.createElement("h1", null, "Orçamento")
)
);
}
});
React.render(
React.createElement(Orcamento, null),
document.getElementById("orcamento")
);
我在浏览器中的结果:
Orçamento
我<meta charset="UTF-8">
在head
标签内的索引文件中设置了重音字符,如果在页面内容中直接输入这个词,则重音字符在页面标题和正文中起作用,但在通过以下方式呈现时不起作用ReactJs
我该如何解决这个问题?