我试图找出如何始终检查位置服务是否已启用。总是我的意思是像一个实时检查器。我现在所拥有的只是一种观点。我正在检查用户何时登录 - 如果启用了位置服务,他就会登录。但是,如果它未被禁用,则会出现“警告”对话框:
这是我的功能,检查它是否已启用:
checkLocation() {
this.diagnostic.isLocationEnabled().then(
(isAvailable) => {
console.log('Is available? ' + isAvailable);
if (isAvailable) {
this.navCtrl.setRoot(UserTypePage);
} else {
alert('Please turn on the location service');
if (this.autoLogin) {
this.autoLogin();
}
}
}).catch((e) => {
console.log(e);
alert(JSON.stringify(e));
});
}
我在用户尝试登录时调用此函数。
Facebook登录示例:
facebookLogin(): void {
this.global = ShareService.getInstance();
this.subscriptions.push(this.authProvider.loginWithFacebook().subscribe((user) => {
this.loading.dismiss().then(() => {
this.global.setUserName(user.displayName);
this.global.setProfilePicture(user.photoURL);
this.global.setUserId(this.authProvider.currentUserId);
this.tokenstore();
this.checkLocation(); //HERE
})
}, error => {
this.loading.dismiss().then(() => {
let alert = this.alertCtrl.create({
message: error.message,
buttons: [
{
text: "Ok",
role: 'cancel'
}
]
});
alert.present();
});
}, (err) => {
console.error("error: " + JSON.stringify(err));
}));
this.loading = this.loadingCtrl.create({
content: 'Signing in...'
});
this.loading.present();
}
我希望此功能在整个应用程序中工作,而不仅仅是在登录视图中。我该怎么做?
答案 0 :(得分:2)
这是一个经典场景,Angular Dependency Injection将帮助您跨组件/视图重用现有方法。
您可以在应用程序中创建LocationCommonService,并定义检查位置服务是否已启用的方法。
现在在需要调用所需函数的所有组件中注入LocationCommonService。