当前位置: 软件>JavaScript软件
ngCordova
本文导语: ngCordova 包含一组 AngularJS 的表达式,基于 Cordova API 构建,用于简化构建、测试和发布 Cordova 应用。 示例代码: 使用摄像头: module.controller('PictureCtrl', function($scope, $cordovaCamera) { $scope.takePicture = function() { $cordovaCa...
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) { });
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。