粗大的内捧猛烈进出小视频,日本成人精品视频一区,在线播放亚洲成人av,精品人妻少妇嫩草av专区,亚洲AV永久久久久久久浪潮,性导航app精品视频,九九热精品免费视频,一本一本大道香蕉久在线播放

        九宮格方式上傳圖片(預覽并刪除)

        2020-1-20    前端達人

        <view class="gallery">

            <view class="item" wx:for="{{images}}" wx:key="">

                <image src="{{item}}" data-src="{{item}}" bindtap="previewImage" mode="aspectFill" />



                <!-- 刪除按鈕 -->

                <view class="delete" bindtap="delete" data-index="{{index}}">X</view>

            </view>

            <view class="item" bindtap="chooseImage">

                <view class='addIcon'>+</view>

            </view>

        </view>

        <button type="primary" bindtap="submit">提交</button>

        ————————————————



        /* pages/index/index.wxss */
        /*畫廊*/
        .gallery {    
          width:630rpx;
          margin: 0 auto;
          display: flex;    
          justify-content: flex-start;    
          flex-wrap: wrap;
        }
        /*每張圖片所占容器*/
        .item {    
          position: relative;    
          margin:10rpx 5rpx;
          width: 200rpx;
          height: 200rpx;
        }
        .item image{
          width: 100%;
          height: 100%;
        }
        /*add按鈕*/
        .item .addIcon{
          position:relative;
          width:200rpx;
          height:200rpx;
          text-align:center;
          line-height:200rpx;
          font-size:80rpx;
          background: #f2f2f2;
          color: #555;
        }
        /*刪除按鈕*/
        .delete {    
          position:absolute;
          right:0;
          top:0;
          /* background:#ccc; */
          opacity:1;
          height: 36rpx;
          font-size:22rpx;
          font-weight:700;
          padding:0 8rpx 0 10rpx;
        }
        ————————————————


        var that;
        Page({
          data: {
            images: [],
            uploadedImages: [],
            //imageWidth: getApp().screenWidth / 4 - 10
          },
          onLoad: function (options) {
            that = this; var objectId = options.objectId; console.log(objectId);
          },
          chooseImage: function () {
            // 選擇圖片
            wx.chooseImage({
              count: 3, // 默認9
              sizeType: ['compressed'],
              sourceType: ['album', 'camera'],
              // 可以指定來源是相冊還是相機,默認二者都有
              success: function (res) {
                // 返回選定照片的本地文件路徑列表,tempFilePath可以作為img標簽的src屬性顯示圖片
                var tempFilePaths = res.tempFilePaths;
                console.log(tempFilePaths);
                that.setData({
                  images: that.data.images.concat(tempFilePaths)
                });
              }
            })
          },
          // 圖片預覽
          previewImage: function (e) {
            //console.log(this.data.images);
            var current = e.target.dataset.src
            wx.previewImage({
              current: current,
              urls: this.data.images
            })
          },
          // submit: function () {        
          //   // 提交圖片,事先遍歷圖集數組
          //   that.data.images.forEach(function (tempFilePath) {
          //     new AV.File('file-name', {
          //       blob: {
          //         uri: tempFilePath,
          //       },
          //     }).save().then(                
          //       // file => console.log(file.url())
          //     function (file) {                    
          //       // 先讀取
          //       var uploadedImages = that.data.uploadedImages;
          //       uploadedImages.push(file.url());                    
          //       // 再寫入
          //       that.setData({
          //         uploadedImages: uploadedImages
          //       }); console.log(uploadedImages);
          //     }
          //     ).catch(console.error);
          //   });
          //   wx.showToast({
          //     title: '評價成功', success: function () {
          //       wx.navigateBack();
          //     }
          //   });
          // }, 
          delete: function (e) {
            var index = e.currentTarget.dataset.index; var images = that.data.images;
            images.splice(index, 1);
            that.setData({
              images: images
            });
          }
        })
        ————————————————


        日歷

        鏈接

        個人資料

        藍藍設計的小編 http://www.xintaizi.com

        存檔