• vue 开发系列(五) 调用原生API


    概要

    我们在开发手机端程序的时候了,我们经常需要使用到拍照,二维码的功能.数字天堂公司提供了大量的原生API支持。

    http://www.html5plus.org/doc/

    实现

    1.在hbuilder 选择需要使用的模块

    2.在组件代码中调用相应的API接口。

    比如拍照:

    takePhoto(){
                var _self=this;
                var cmr = plus.camera.getCamera();
                var fmt = cmr.supportedImageFormats[0];
                cmr.captureImage( function( path ){
                    plus.io.resolveLocalFileSystemURL(path, function(entry) {
                           var tmpPath= entry.toLocalURL();
                           var fileAry=[];
                           fileAry.push(tmpPath);
                           _self.compressImg(fileAry);
                    })
                  },
                  function( error ) {},
                  {format:fmt});
              }

    plus 就是H5+ 的接口调用。

    注意事项

    我们在使用这些接口的时候,需要将系统打包成app,否则plus 不能使用。

  • 相关阅读:
    [CF1106E] 边界有问题
    UOJ 67 新年的毒瘤
    BZOJ 1093 [ZJOI2007]最大半连通子图
    codeforces round#510
    codeforces round#509
    杂谈
    BZOJ 3007 [SDOI2012]拯救小云公主
    BZOJ 1799
    BZOJ 3329
    BZOJ 3209 花神的数论题
  • 原文地址:https://www.cnblogs.com/yg_zhang/p/8846540.html
Copyright © 2020-2023  润新知