我正在使用Cordova诊断插件 - https://github.com/dpa99c/cordova-diagnostic-plugin,使用meteor add cordova添加它:cordova.plugins.diagnostic@1.1.0,我写了下面的代码,如插件github自述文件中所述
if (Meteor.isCordova) {
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady(){
cordova.plugins.diagnostic.isLocationEnabled(function(enabled){
console.log("Location is " + (enabled ? "enabled" : "disabled"));
}, function(error){
console.error("The following error occurred: "+error);
});
}
}
但是我收到错误,如下所示
未捕获的TypeError:无法读取属性'诊断'未定义的
有关如何在流星中使用此插件的任何帮助。