提取显示next.js中未定义的数据

时间:2019-10-30 11:15:58

标签: next.js

当我在header.js或footer.js中使用访存并将其包含到我的layout.js中时,得到的值不确定。相同的代码在诸如index或about的单独页面上可以正常工作。

 static async getInitialProps(){
    const response =  fetch('http://localhost/coc/api/singletons/get/topbar/',{
      headers: { 'Cockpit-Token': 'ae6d9be66c544f76bf4e0676357253' }
    })
    const data= response.json();
    return { data: data }

1 个答案:

答案 0 :(得分:0)

您可以尝试添加await吗?像这样:

const response = await fetch('http://localhost/coc/api/singletons/get/topbar/',{
      headers: { 'Cockpit-Token': 'ae6d9be66c544f76bf4e0676357253' }
    })