没有
数据渲染,页面显示undefined,不知道出什么问题了[图片]
2020-06-04已经解决了,自定义的tabbar跳转时的url前面需要加‘/’
wx.switchTab跳转时url问题[图片] 点击非第一个tabbar按钮时出现,url变为两个页面的url拼接 wx.switchTab中的url重新调用时url未清除,url需要加前面‘/’,问题已解决
2020-02-05Component({ /** * 组件的属性列表 */ properties: { maxNumber:{ // 最多上传文件数量 type: Number, value: 1 }, uploadUrl: { // 上传接口url type: String, value: '' }, uploadData: { // 上传时附带的其它参数 type: Object, value: {} }, fileName: { // 上传时文件对应的名称 type: String, value: 'file' } }, /** * 组件的初始数据 */ data: { fileData: [] }, lifetimes: { attached: function() { // 在组件实例进入页面节点树时执行 }, detached: function() { // 在组件实例被从页面节点树移除时执行 }, }, /** * 组件的方法列表 */ methods: { // 选择图片 chooseFile: function(e){ wx.chooseImage({ count: this.maxNumber, // 上传文件数量(max:9) complete: function(res) { //this.upload(res.tempFilePaths, res.tempFiles); // res.tempFiles :{path: '', size: 11} }.bind(this), }) }, // 删除 delete: function(e){ let index = e.target.dataset.index; let data = this.data.fileData.splice(index, 1); // <--- 问题 this.setData({ fileData: data }) }, // 回调数据 change: function(data){ this.triggerEvent('change', data, {}) }, upload: function(files = [], filesObject){ this.data.fileData.push({url: files[0]}); this.setData({ fileData: this.data.fileData }) } } }) <view class="upload-box"> <view class="file-show-box" wx:for="{{fileData}}" wx:for-index="i" bindtap="showImg($event,i)" wx:for-key="{{i}}"> <image class="file-img" src="{{item.url}}"></image> <view class="file-delete" bindtap="delete" data-index="{{i}}">X</view> </view> <view class="choose-file-btn" bindtap="chooseFile"> <text class="choose-file-text">最多{{maxNumber}}张</text> </view> </view>
数组删除bug,严重[图片] 删除下标为0的需要删除两次才能删除
2020-01-06