首頁 > 軟體

vue中then後的返回值解析

2022-04-06 16:00:46

then後的返回值

Promise 中處理的是非同步呼叫,非同步呼叫是非阻塞式的,在呼叫的時候並不知道它什麼時候結束,也就不會等到他返回一個有效資料之後再進行下一步處理

可以使用 async 和 await來得到我們的返回值

在vue 中的函數加上async 

async del(id){
      var that=this
   
         var params={
              sensorCommonId:id
            }
           return  DelSensorCommonInfo(params).then(function(res) {
              return Promise.resolve(res.data.Data);     
            });
            
    },

在我們呼叫所在的函數中也加上 async 在呼叫del函數時  

async  more(){
 
     var index= await that.del(array[i].SensorCommonId)
 
        console.log(index)
 
}
    function getSomething() {
    return "something";
}
 
async function testAsync() {
    return Promise.resolve("hello async");
}
 
async function test() {
    const v1 = await getSomething();
    const v2 = await testAsync();
    console.log(v1, v2);
}
 
test();

獲取.then()中的返回值

以上傳檔案到阿里云為例:

export function uploadObj({ file }, type) {
  let name = `路徑名/${Date.parse(new Date()) + file.uid}`; //定義唯一的檔名
  const fileName = type == 'excel' ? name + ".xlsx" : name;
  const ContentType = type == 'excel' ? "text/xml" : "image/jpeg";
  new OSS(conf).put(fileName, file, {
    ContentType: ContentType
  }).then(({ res, url }) => {
    if (res && res.status == 200) {
      this.$message.success("上傳成功");
      return url
    }
  }).catch(() => {
    this.$message.error("上傳失敗");
  });
}

以上程式碼能實現上傳圖片/excel到阿里雲伺服器,上傳成功後,阿里雲服務會返回一個URL。此時如果直接return url,那麼收到的url是undefined。

解決方法如下

export function uploadObj({ file }, type, callback) {
  let name = `路徑名/${Date.parse(new Date()) + file.uid}`; //定義唯一的檔名
  const fileName = type == 'excel' ? name + ".xlsx" : name;
  const ContentType = type == 'excel' ? "text/xml" : "image/jpeg";
  new OSS(conf).put(fileName, file, {
    ContentType: ContentType
  }).then(({ res, url }) => {
    if (res && res.status == 200) {
      this.$message.success("上傳成功");
      callback(url)
    }
  }).catch(() => {
    this.$message.error("上傳失敗");
  });
}

呼叫此方法

this.uploadObj({ file }, "excel", url => this.importData(url));   

傳入的第三個引數是回撥函數,這樣在importData方法中,就可以直接獲取到url啦

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。 


IT145.com E-mail:sddin#qq.com