Чи 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-розмітки, єдиною проблемою, яку я бачу, є неправильна розмітка.
ОНОВЛЕННЯ
Якщо ви маєте справу з 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'));