异步怎么拿值

clipboard.png

异步怎么拿值

阅读 3.4k
6 个回答

将promise getUuidImage return出去。

你想拿什么值?要返回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 返回没拿到值

let img= await getUuidImage(uuid);

感觉要补一下知识点

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题