Fontello 和 ReactJS
Fontello and ReactJS
我正在尝试使用 Fontello 图标。为此,我需要将 innerHTML 设置为 
。但是 &
一直在逃脱,我不想危险地使用 set html 。反正有这个用吗?
它说我也可以使用 0xe821
但我不知道如何使用。
我的代码:
React.createClass({
render: function() {
return React.createElement('div', {}, '');
}});
您可以改用 '\ue831'
。它直接在字符串文字中定义一个字符,因此 React 不需要也不会转义它。
我正在尝试使用 Fontello 图标。为此,我需要将 innerHTML 设置为 
。但是 &
一直在逃脱,我不想危险地使用 set html 。反正有这个用吗?
它说我也可以使用 0xe821
但我不知道如何使用。
我的代码:
React.createClass({
render: function() {
return React.createElement('div', {}, '');
}});
您可以改用 '\ue831'
。它直接在字符串文字中定义一个字符,因此 React 不需要也不会转义它。