H5-安卓和ios调用相机和相册

Posted JunviZeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了H5-安卓和ios调用相机和相册相关的知识,希望对你有一定的参考价值。

<input v-if="ipshow" type="file" accept="image/*" name="file1" capture="camera" @change="upload">
<input v-else type="file" accept="image/*" name="file1" @change="upload">
data() {
        return{
                 ipshow:false,//切换input属性
              }
       },
//判断是否ios,是则不执行,否则安卓执行
if (‘andriod‘ == this.appSource()) {
        this.ipshow = true;
 }else{
        this.ipshow = false;
 }
//判断ios和安卓
appSource() {
             const u = navigator.userAgent;
             const isiOS = !!u.match(/(i[^;]+;( U;)? CPU.+Mac OS X/);
             if (isiOS) {
               return "ios";
             } else {
               return "andriod";
           }
},

 

以上是关于H5-安卓和ios调用相机和相册的主要内容,如果未能解决你的问题,请参考以下文章

H5调用手机相机和相册,并且将图片转化为base64的格式

Android-混合开发H5 能直接调起原生的相册和相机吗?

Android-混合开发H5 能直接调起原生的相册和相机吗?

html5或者JS怎样调用手机摄像头或者相册?

html5或者JS怎样调用手机摄像头或者相册

iOS----------调用系统照相机和相册