收藏
回答

小程序内嵌H5上传图片,在ios6,小程序自动退出

1、h5页面使用input上传图片

<input

@change="fileChange($event)"

type="file"

ref="uploadFile" multiple style="display: none"/>

2、小程序通过web-view引入H5


结果:访问页面时,点击上传图片首先弹出相机和图片选择,选择图片,小程序自动退出


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

1 个回答

  • 半寸灰
    半寸灰
    2018-10-29

    是有这个问题   暂时用 chooseImage

    https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html

    2018-10-29
    有用
    回复 2
    • 王彩霞
      王彩霞
      2018-10-29

      但是引入了<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script>后,

      调用chooseImage的时候会报不是一个函数:

      Uncaught TypeError: wx.miniProgram.chooseImage is not a function,


      调用代码如下:

      wx.miniProgram.chooseImage({

      count: 1,

      sizeType: ['original', 'compressed'],

      sourceType: ['album', 'camera'],

      success (res) {

          // tempFilePath可以作为img标签的src属性显示图片

          const tempFilePaths = res.tempFilePaths

          }

      })



      2018-10-29
      回复
    • 半寸灰
      半寸灰
      2018-10-29回复王彩霞

      不要引入以前的公众号SDK

      2018-10-29
      回复
登录 后发表内容