当前位置

网站首页> 程序设计 > 开源项目 > 编程语言 > 浏览文章

ngCordova

作者:小梦 来源: 网络 时间: 2024-03-14 阅读:

6月14日【上海】开源中国 OSC 源创会第 25 期   现在报名»

ngCordova 包含一组 AngularJS 的表达式,基于 Cordova API 构建,用于简化构建、测试和发布 Cordova 应用。

示例代码:

使用摄像头:

module.controller('PictureCtrl', function($scope, $cordovaCamera) {  $scope.takePicture = function() {    $cordovaCamera.getPicture({      // See all the possible Camera options from the Camera docs [1]:      /// https://github.com/apache/cordova-plugin-camera/blob/master/doc/index.md#cameraoptions    }).then(function(imageData) {      // Success! Image data is here    }, function(err) {      // An error occured. Show a message to the user    });  }});

条形码扫描:

module.controller('MyCtrl', function($scope, $cordovaBarcodeScanner) {  $cordovaBarcodeScanner.scan().then(function(result) {    // Scanner result  }, function(err) {  });

相关阅读

热点阅读

网友最爱