如何通过API响应使用HTML标记

时间:2019-06-24 01:42:05

标签: html reactjs api

我正在调用一个API,结果中包含一些HTML标记(下面的示例)。有没有一种方法可以在显示结果时使用该标记,还是最好将其删除?我正在使用React JS并将结果呈现到网页上。

<p>Each night a park ranger will present an illustrated program highlighting a 
different aspect of Yellowstone’s wonders. Inquire at Fishing Bridge Visitor 
Information Center or look on local bulletin boards for the night's subject.</p> 
<p>Meet at the Bridge Bay Campground Amphitheater. <em>Dress warmly and bring a 
flashlight.</em> Accessible. 45 minutes.</p>

2 个答案:

答案 0 :(得分:1)

您可以使用以下方法,只需传递html内容并照常呈现返回值。

the --publish-settings-only -o

答案 1 :(得分:0)

好吧,如果对HTML进行了清理(可以使用sanitize-html程序包https://www.npmjs.com/package/sanitize-html,并希望使用危险地设置InnerHTML https://reactjs.org/docs/dom-elements.html呈现经过清理的字符串。