s bridge:基于dsBridge扩展的npm包 源码
npm方式安装初始化代码 npm install s - bridge //app.js直接引入 import Bridge from 's-bridge' Vue . prototype . $sbridge = Bridge 备注: 大部分的方法均支持同异步,格式如下: // 同步调用方法 let deviceInfo = this . $sbridge . getDeviceInfo ( ) console . log ( deviceInfo ) // 异步调用方法 this . $sbridge . asyncGetDeviceInfo ( ) . then ( res => { console . log ( res ) } ) 0.通用交互方法 调用原生方法的通用入口需与原生开发协商 // 推荐使用异步方法 同步方法无返回信息 /** * 参数列表 (name, u
用户评论