小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如果不能,那么多张图片怎么一起上传,总不能一张张的传吧
7 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
我是这样写的,不过还没测试行不行
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
请问,怎么使用promise.all 上传,能给个例子吗?
好的,谢了
参考MDN:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all
Rejection:If any of the passed-in promises reject, Promise.all asynchronously rejects with the value of the promise that rejected, whether or not the other promises have resolved.
Promise.all
意思就是只要一个失败全部都会失败。
你可以把每个子任务封装成一个Promise,然后在里面捕捉异常,并且不要reject,其实就可以解决这个问题
好的。谢谢
对了,Promise.all是不是只要一张上传失败整个就会被定义成失败啊。。
只能一张张来,你可以用Promise.all同时上传
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
我是这样写的,不过还没测试行不行
请问,怎么使用promise.all 上传,能给个例子吗?
好的,谢了
参考MDN:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all
Rejection:
If any of the passed-in promises reject,
Promise.all
asynchronously rejects with the value of the promise that rejected, whether or not the other promises have resolved.意思就是只要一个失败全部都会失败。
你可以把每个子任务封装成一个Promise,然后在里面捕捉异常,并且不要reject,其实就可以解决这个问题
好的。谢谢
对了,Promise.all是不是只要一张上传失败整个就会被定义成失败啊。。
只能一张张来,你可以用Promise.all同时上传