Wordpress JSON API - 从内容中删除字符

时间:2014-08-02 10:42:23

标签: json wordpress api character-encoding json-api

我正在使用Wordpress JSON API插件将我的帖子作为json。我正在将这些数据用于我的AngularJS项目。如何从我通过JSON api获得的帖子的内容部分中删除字符和p标签。

<p> Lorem ipsum text &#8220;times&#8221; </p>

所以我可以在我的页面上显示:

Lorem ipsum text "times"

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题但后来发现我将内容附加为textNode。在我将其设置为innerHTML之后,它起作用了。

所以,我的错误代码是:

var content = document.createElement('div');
content.setAttribute('class', 'story');
var contentText = document.createTextNode(post.content);
div.appendChild(contentText);

正确的代码:

var content = document.createElement('div');
content.setAttribute('class', 'story');
content.innerHTML = post.content;

希望它会对某人有所帮助。