我有一个JSON URL,我从中获取JSON并导出到其他js文件。
之后,当我想使用它时,我必须使用
JS1:
export const getData = () => fetch(state._WEB_SERIVICE_URL+'get_config')
.then(response => response.json())
JS2:
export const B2 = getData().then(data => {
alert(data.main_color+"*");
return data.main_color
/* do what you want to do in promise resolve callback function */
})
JS3
B2.then(data => {
alert(data+"*2"); // I want to get it directly...
})
如何在没有.then(
的情况下访问B2.data
?
您可以使用
await
const response = await fetch(state._WEB_SERIVICE_URL+'get_config')
console.log(response)
return response
有关更多信息,您可以查看文档网络