收藏
回答

一个按钮可重复添加图片

按钮如何多次添加图片

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

1 个回答

  • HS
    HS
    2018-05-19

    您指的是否是 wx.chooseImage 接口

    2018-05-19
    有用 1
    回复 8
    • Viego
      Viego
      2018-05-19
      是的
      2018-05-19
      回复
    • HS
      HS
      2018-05-19回复Viego
      没有限制不能获取重复图片的。建议你自己动手试试哦
      2018-05-19
      回复
    • Viego
      Viego
      2018-05-19回复HS
      第二次的会覆盖第一次的请问可不可以解决
      2018-05-19
      回复
    • HS
      HS
      2018-05-19回复Viego
      你的代码怎么写的
      2018-05-19
      回复
    • Viego
      Viego
      2018-05-19回复HS
      <button bindtap="chooseimage" >model</button> <image class="image-style" src="{{tempFilePaths}}" style="bottom:{{ballBottom}}px;right:{{ballRight}}px "bindtouchmove="ballMoveEvent1"></image> js chooseimage: function () { var _this = this; var i=0; wx.chooseImage({ count: 3, // 默认9 sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有 sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有 success: function (res) { // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片 var tempFilePaths = res.tempFilePaths; _this.setData({ imageList: tempFilePaths[0] }); } }) },
      2018-05-19
      回复
    查看更多(3)
登录 后发表内容