- H5嵌入小程序webview 安卓手机点击上传按钮无效,组件使用vant的uploader。
<div v-if="this.$store.state.isIOS"> <van-uploader v-model="fileList" :before-delete="beforeDelete" :before-read="beforeRead" :max-count="5" multiple accept="image/*" upload-icon="plus" /> </div> <div v-else> <van-uploader v-model="fileList" :before-delete="beforeDelete" :before-read="beforeRead" multiple accept="image/*" capture="camera" :max-count="5" upload-icon="plus" /> </div> v-else里代表安卓使用的上传组件。 经过尝试,我删除accept="image/*" multiple 安卓可以调起上传以及拍照了。但是没有了上传功能。想问下之后会修复吗?
2022-06-30 - NFC 标签打开小程序提示:对不起,当前页面无法访问?
NFC贴卡唤起后,提示 “对不起,当前页面无法访问”,用的是明文 URL Scheme,小程序页面路径存在且已经正式发布,后台也已配置明文path:badge/main/main。 明文 URL Scheme 链接内容如下:weixin://dl/business/?appid=wx6a51bde53522b8ff&path=badge/main/main&query=333333&env_version=release
2024-07-01