ไม่this.props.match.description
เป็นสตริงหรือวัตถุ? หากเป็นสตริงควรแปลงเป็น HTML ได้ ตัวอย่าง:
class App extends React.Component {
constructor() {
super();
this.state = {
description: '<h1 style="color:red;">something</h1>'
}
}
render() {
return (
<div dangerouslySetInnerHTML={{ __html: this.state.description }} />
);
}
}
ReactDOM.render(<App />, document.getElementById('root'));
ผลลัพธ์: http://codepen.io/ilanus/pen/QKgoLA?editors=1011
อย่างไรก็ตามหากdescription: <h1 style="color:red;">something</h1>
ไม่มีคำพูด''
คุณจะได้รับ:
Object {
$$typeof: [object Symbol] {},
_owner: null,
key: null,
props: Object {
children: "something",
style: "color:red;"
},
ref: null,
type: "h1"
}
หากเป็นสตริงและคุณไม่เห็นมาร์กอัป HTML ใด ๆ ปัญหาเดียวที่ฉันเห็นคือมาร์กอัปผิดพลาด ..
UPDATE
หากคุณกำลังติดต่อกับ HTMLEntitles คุณต้องถอดรหัสพวกเขาก่อนที่จะส่งพวกเขาไปdangerouslySetInnerHTML
ที่นั่นคือเหตุผลที่พวกเขาเรียกมันว่าอันตราย :)
ตัวอย่างการทำงาน:
class App extends React.Component {
constructor() {
super();
this.state = {
description: '<p><strong>Our Opportunity:</strong></p>'
}
}
htmlDecode(input){
var e = document.createElement('div');
e.innerHTML = input;
return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue;
}
render() {
return (
<div dangerouslySetInnerHTML={{ __html: this.htmlDecode(this.state.description) }} />
);
}
}
ReactDOM.render(<App />, document.getElementById('root'));