当我在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 }
答案 0 :(得分:0)
您可以尝试添加await
吗?像这样:
const response = await fetch('http://localhost/coc/api/singletons/get/topbar/',{
headers: { 'Cockpit-Token': 'ae6d9be66c544f76bf4e0676357253' }
})