91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue中then后的返回值實例分析

發布時間:2022-04-06 13:43:36 來源:億速云 閱讀:524 作者:iii 欄目:開發技術

這篇文章主要介紹了vue中then后的返回值實例分析的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇vue中then后的返回值實例分析文章都會有所收獲,下面我們一起來看看吧。

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啦

關于“vue中then后的返回值實例分析”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“vue中then后的返回值實例分析”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蒙山县| 盐津县| 锡林郭勒盟| 盖州市| 尉犁县| 张家界市| 阿拉善盟| 汝南县| 荆州市| 湘潭县| 辉县市| 莒南县| 龙口市| 平潭县| 阿巴嘎旗| 东辽县| 南陵县| 富锦市| 灵武市| 延庆县| 澄迈县| 吉木乃县| 凤冈县| 福建省| 临泽县| 龙江县| 壤塘县| 政和县| 电白县| 米林县| 北票市| 岑溪市| 石台县| 蓝山县| 肇庆市| 昭平县| 晋宁县| 陇西县| 宾川县| 丹巴县| 夏津县|