异步怎么拿值
你想拿什么值?要返回img?让geturlImage返回一个Promise,这样外部就可以用then拿到值
function geturlImage(uuid){
let img='';
return getUuidImage(uuid).then(info=>{
img=info;
return img;
});
}
在外边可以:
geturlImage(uuid).then(path=>{
console.log(path);
});
如果支持es7,也可以用async/await
async function geturlImage(uuid){
let img= await getUuidImage(uuid);
return img;
}
...
geturlImage(uuid).then(path=>{
console.log(path);
});
<el-table-column label="参赛人照片" align="center">
<template slot-scope="scope">
<img :src="getImageUrl(scope.row.headImg)" width="155px" height="100px"/>
</template>
</el-table-column>
getImageUrl (uuid) {
return getImgUrl(uuid).then(res => {return res})
},
怎么return 返回没拿到值
10 回答11.4k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.9k 阅读✓ 已解决
3 回答2.5k 阅读✓ 已解决
3 回答2.3k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
将promise getUuidImage return出去。