小程序 上传图片

获取图片

  • wxml

    <!--pages/publish/publish.wxml-->
    <view bindtap="uploadImage">请上传图片</view>
    <view>
    <image wx:for="{{imageList}}" src="http://www.bubuko.com/{{item}}"></image>
    </view>
    
  • js

      data: {
    imageList: ["/static/hg.jpg", "/static/hg.jpg"]
    },
    uploadImage:function(){
    var that = this;
    wx.chooseImage({
    count:9,
    sizeType: [‘original‘, ‘compressed‘],
    sourceType: [‘album‘, ‘camera‘],
    success:function(res){
    // 设置imageList,页面上图片自动修改。
    // that.setData({
    //   imageList: res.tempFilePaths
    // });
    // 默认图片 + 选择的图片;
    that.setData({
    imageList: that.data.imageList.concat(res.tempFilePaths)
    });
    }
    });
    },
    

注意:图片目前只是上传到了内存。

小程序 上传图片

原文:https://www.cnblogs.com/angdh/p/14729322.html

以上是小程序 上传图片的全部内容。
THE END
分享
二维码
)">
< <上一篇
下一篇>>