这是我fresh里面的代码
export function fetch(options) {
return new Promise((resolve, reject) => {
const instance = axios.create({
//所有的请求都会带上这些配置,比如全局都要用的身份信息等。
headers: {
'Content-Type': 'application/json',
},
timeout: 30 * 1000 // 30秒超时
});
instance(options)
.then(response => {
Message({
message: '恭喜你,这是一条成功消息',
type: 'success'
});
resolve(response);
})
.catch(error => {
reject(error);
});
});
}
这是我index里面的代码
export function test(params) {
return fetch({
url: api.test,
method: 'get',
params
})
}
现在我在页面使用的时候只能通过.then()方法来获取到test里面的返回值。有没有办法在页面的时候通过
const res=test();
而不是
test().then(res=>{
if(res){
....
}
})