web的h5调起相机和选择图库怎么实现?

基于浏览器的h5,使用的是vantui和vue3.修改头像可以选择相册和通过拍照上传,是用input实现的。但是有问题就是选择图库的时候系统会自动的弹出来一个选择框,不能够直接选择相册。应该怎么解决web的h5调起相机和选择图库怎么实现?

              <van-action-sheet v-model:show="avatarShow" :actions="avatarActions" cancel-text="取消" close-on-click-action @select="avatarSelect" class="action-sheet-container">

<div class="abs-input">

<div><input type="file" accept="image/*" capture="camera"></div>

<div><input type="file" accept="image/*"></div>

</div>

</van-action-sheet>


回答:

Web 开发只能使用浏览器提供的功能,无法突破浏览器的限制,所以只能这样用。

以上是 web的h5调起相机和选择图库怎么实现? 的全部内容, 来源链接: utcz.com/p/935173.html

回到顶部