我需要从jsx文件中导出一个const。当前,它设置为静态值,并且可以正常工作。
现在的问题是,我需要为此常数从API传递数据。
那么,从API调用获取数据后如何导出该const?
我已经尝试过下面的代码,但是它不起作用!!!
let response = async()=>{ return fetch("http://localhost:54982/api/Admin/GetRouteLinks") }
let resData = async()=>{ return response.json() }
let dashRoutes = resData;
export default dashRoutes;
答案 0 :(得分:0)
您可以导出功能 (getData)是您的Ajax数据请求
import {getData} from '';
export const nameFunc = () => {
getData().then(data => {
/* do what you want to do in promise resolve callback function */
})
}