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

溫馨提示×

溫馨提示×

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

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

微信小程序如何實現ES6Promise.all批量上傳文件

發布時間:2021-07-02 15:01:33 來源:億速云 閱讀:283 作者:小新 欄目:web開發

這篇文章主要介紹微信小程序如何實現ES6Promise.all批量上傳文件,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

微信小程序 ES6Promise.all批量上傳文件實現代碼

客戶端

Page({
  onLoad: function() {
    wx.chooseImage({
      count: 9,
      success: function({ tempFilePaths }) {
        var promise = Promise.all(tempFilePaths.map((tempFilePath, index) => {
          return new Promise(function(resolve, reject) {
            wx.uploadFile({
              url: 'https://www.mengmeitong.com/upload',
              filePath: tempFilePath,
              name: 'photo',
              formData: {
                filename: 'foo-' + index,
                index: index
              },
              success: function(res) {
                resolve(res.data);
              },
              fail: function(err) {
                reject(new Error('failed to upload file'));
              }
            });
          });
        }));
        promise.then(function(results) {
          console.log(results);
        }).catch(function(err) {
          console.log(err);
        });
      }
    });
  }
});

服務端

<?php
use IlluminateHttpRequest;
Route::post('/upload', function (Request $request) {
  if ($request->photo->isValid()) {
    $request->photo->storeAs('images/foo/bar/baz', $request->filename . '.' . $request->photo->extension());
    return ['success' => true, 'index' => $request->index];
  }
});

以上是“微信小程序如何實現ES6Promise.all批量上傳文件”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

习水县| 莲花县| 江陵县| 个旧市| 安顺市| 十堰市| 蛟河市| 石城县| 新巴尔虎左旗| 会昌县| 万荣县| 富顺县| 磐石市| 兴宁市| 永寿县| 陈巴尔虎旗| 雅安市| 巨鹿县| 营口市| 岳西县| 崇左市| 东安县| 开远市| 北辰区| 新河县| 盐池县| 连山| 军事| 仙游县| 陵水| 大竹县| 朔州市| 南开区| 柳林县| 黄平县| 洛川县| 扶风县| 金平| 偃师市| 来凤县| 贺兰县|