上传图片无效
发布于 6 年前 作者 yan84 11306 次浏览 来自 问答

公众平台绑定了七牛上传图片的域名,大致代码如下,上传不了,请求都不会发,怎么回事?fail方法 返回 errMsg:“uploadFile:fail”

wx.chooseImage({

            success: function (res) {

                var tempFilePaths = res.tempFilePaths;

                wx.uploadFile({

                    url: ‘https://up.qiniu.com’, 

                    filePath: tempFilePaths[0],

                    name: ‘file’,

                    formData: {

                        ‘uptoken’: “xx”

                    }

 

                })

           }

})

回到顶部