如何呈现Wordpress API的内容?

时间:2019-03-27 13:36:50

标签: json react-native wordpress-rest-api

我正在为wordpress解决方案创建一个移动应用程序,在研究wordpress rest api时,发现json模式的呈现方式存在问题;

/ wp-json / wp / v2 / posts显示所有帖子,但格式为

@RequestMapping("/contractor")
public Contractor contractor() {
    Authentication auth = SecurityContextHolder.getContext().getAuthentication();
    ...
}

如何从response.data.content中提取实际内容,因为它是带有标签等???的html版本。enter image description here

2 个答案:

答案 0 :(得分:0)

首先,使用html标签获取json数据,然后

var StrippedString = OriginalString.replace(/(<([^>]+)>)/ig,"");

答案 1 :(得分:0)

.NET开发人员提示

在.NET中使用http://restsharp.org/调用API时,不需要对内容进行解析。