我有一个JSON blob,它有一个换行形式的新行字符。我想用换行符解析JSON blob并在React中将其显示为HTML段落。
这可能吗?
代码:
var Blob = [{ "Content" : "HEHkspodjoisndjdsnsd \\n New Line here you go"}]
var TestClass = React.createClass({
render:function() {
return (
<div>{this.props.test.Content}</div>
);
}
});
<TestClass test={Blob} />, document.getElementById('test');
答案 0 :(得分:0)
这个库可以很好地使用标记渲染你的内容 - 它将\ n识别为段落 - 你甚至可以在你的JSON blob中进一步创建更多的降价,以更深入地自定义显示。