我是靠谱客的博主 谦让日记本,最近开发中收集的这篇文章主要介绍图片识别不了小程序怎么办_微信小程序上传图片功能实现,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

微信小程序上传图片功能,后台asp.net

2020.09.11优化了部分功能

JS:

// 删除图片

clearImg:function(e){

var nowList = [];//新数据

var uploaderList = this.data.uploaderList;//原数据

for (let i = 0; i < uploaderList.length;i++){

if (i == e.currentTarget.dataset.index){

continue;

}else{

nowList.push(uploaderList[i])

}

}

this.setData({

uploaderNum: this.data.uploaderNum - 1,

uploaderList: nowList,

showUpload: true

})

},

//展示图片

showImg:function(e){

var that=this;

wx.previewImage({

urls: that.data.uploaderList,

current: that.data.uploaderList[e.currentTarget.dataset.index]

})

},

//选择图片

upload: function(e) { </

最后

以上就是谦让日记本为你收集整理的图片识别不了小程序怎么办_微信小程序上传图片功能实现的全部内容,希望文章能够帮你解决图片识别不了小程序怎么办_微信小程序上传图片功能实现所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部