0

我的主干应用程序从 JSON 文件呈现下划线模板。我有一些我想用 HTML 中的无序列表呈现的正文副本。文本一直将 HTML 呈现为一个完整的字符串。有什么建议可以阻止这种情况吗?

这是我从我的 CMS 中得到的,我在 JSON 文件中

<p>Leading provider of tax credit services and financing for productions wishing to access the state's <b>recently increased</b> 20%-25% Production Tax Credit.
&lt;ul&gt;&lt;li&gt;Tax Credit Administration (including filing of all forms, reports and tax returns).&lt;/li&gt;&lt;li&gt;Tax Credit Advances (either during or upon completion of production)&lt;/li&gt;&lt;li&gt;Deferral of up to 100% of Equipment, Camera and Facilities costs
&lt;/li&gt;&lt;/ul&gt;</p>

以下是渲染时发生的情况: 在此处输入图像描述

4

1 回答 1

0

我假设您想要的是<li>code</li>呈现为列表项而不是原始文本。

这个小提琴可能会有所帮助:http: //jsfiddle.net/fzM4N/

于 2013-05-14T13:39:37.213 回答