我使用Apache Cordova Ionic(标签)项目模板在Visual Studio中构建我的项目。我通过config.xml
界面安装了this plugin就好了(看起来好像)。但是我通过控制器访问插件时遇到了麻烦。
.controller("DashCtrl", function ($scope) {
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
console.log(navigator.captuvo);
}
})
在控制台中显示undefined
。
我还在学习离子和科尔多瓦系统,所以它可能是我想念的简单事物。
我添加了相机插件,navigator.camera
正在解决问题。