小程序
小游戏
企业微信
微信支付
扫描小程序码分享
1、h5页面使用input上传图片
<input
@change="fileChange($event)"
type="file"
ref="uploadFile" multiple style="display: none"/>
2、小程序通过web-view引入H5
结果:访问页面时,点击上传图片首先弹出相机和图片选择,选择图片,小程序自动退出
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
是有这个问题 暂时用 chooseImage
https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
但是引入了<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
}
})
不要引入以前的公众号SDK
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
是有这个问题 暂时用 chooseImage
https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html
但是引入了<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
}
})
不要引入以前的公众号SDK