我正在通过create react app创建react app。我的应用程序非常简单,我只想获取帖子并显示图片和帖子标题。我似乎无法获取标题的分页部分。这是我的代码,响应如下:
fetch(\'https://example.com/index.php/wp-json/wp/v2/posts?_embed\')
.then(res => console.log(\'the response::::::::\', res) || res)
.then(response => response.json())
响应记录为“响应:::::::”:
Response {type: "cors", url: "https://example.com/index.php/wp-json/wp/v2/posts?_embed", redirected: false, status: 200, ok: true, …}
body: (...)
bodyUsed: true
headers: Headers {}
ok: true
redirected: false
status: 200
statusText: "OK"
type: "cors"
url: "https://example.com/index.php/wp-json/wp/v2/posts?_embed"
__proto__: Response
正如您所看到的,标头似乎是一个空对象(而不是proto)。。。
我错过什么了吗?这只是straigh wordpress,除了默认主题之外,没有插件或其他任何东西。