如何将字符串转换为html(反应elemtnt):<a className="peoplelink" id="ether" onClick:{this.demoButton.bind(this)}>Ether</a> is the historian of the <a className="peoplelink" id="jaredites" onClick:{this.demoButton.bind(this)}>Jaredites</a>.
我用过
dangerouslySetInnerHTML:
将字符串转换为HTML,但它无法正常工作
答案 0 :(得分:0)
您传递的内容__html
无法使用JSX语法。
因此,使用class=
代替className=
,onclick="..."
(使用全局函数)代替onClick={...}
。