收藏
回答

vivo手机调用wx.canvasToTempFilePathAPI闪退

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.canvasToTempFilePath 客户端 7.0.4 2.7.1

苹果,大部分安卓都可以,目前就VIVO手机一调用此API就闪退,

1、首先排除不是canvas宽高过大

2、排除手机微信版本问题和基础库版本问题

3、排除canvas不存在问题


从这开始贴码吧

ctx.draw(false, function () {

console.log("第8步获取canvas图片")

setTimeout(function(){

wx.canvasToTempFilePath({

canvasId: 'firstCanvas',

success: (resss) => {

console.log("第9步生成图片成功")

console.log(resss)

// 出现提示上传中的提示

wx.hideLoading();

wx.showLoading({

title: '上传中',

})

// 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片  

qiniuUploader.upload(resss.tempFilePath, res => {

//console.log(res)

_this.setData({

//注意这中间有个"/"在

tempFilePaths: _this.data.qiniuInfo.uploadUrl + "/" + res.key

})

// 图片上传成功后加载提示消失

wx.hideLoading();

_this.setData({ imgurl: _this.data.tempFilePaths })

// 放入数组,循环出缩略图

let arr = _this.data.imgArr;

arr.push(_this.data.tempFilePaths)

_this.setData({ imgArr: arr });

}, (error) => {

console.log('error' + JSON.stringify(error))

}, {

region: 'ECN', //ECN, SCN, NCN, NA, ASG

//这里是你所在大区的地址

uploadURL: _this.data.qiniuInfo.uploadUrl,

domain: _this.data.qiniuInfo.doman,

//后端生成的文件key

key: _this.data.qiniuInfo.uniqueKey,

//这里的uptoken是后端返回来的

uptoken: _this.data.qiniuInfo.token,

})

},

fail: (e) => {

console.log(e);

wx.showToast({

title: e.errMsg,

duration:2000,

icon:"none"

})

}

})

}, 500)

})


回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容