Я получаю некоторые данные из WP REST API в Next. js с Isomorphi c unfetch , как я могу получить заголовки ответа?
import fetch from 'isomorphic-unfetch';
class Blog extends React.Component {
static async getInitialProps() {
const res = await fetch('https://wordpress.org/news/wp-json/wp/v2/posts');
const data = await res.json();
return {
res: res,
data: data
};
}
render() {
console.log(this.props.res)
console.log(this.props.data)
return (
<h1>Blog</h1>
)
}
}
Я не вижу ничего доступного в консоли ![enter image description here](https://i.stack.imgur.com/i7ksI.png)
, но когда я открываю url in, появляются заголовки браузер ![enter image description here](https://i.stack.imgur.com/7qLKD.png)