我想在打开应用程序时捕获一个事件。
例如: Waze 应用程序已打开,从此刻开始我想捕获一个事件并决定该应用程序是否可以继续运行或不< /强>
答案 0 :(得分:1)
是的,你可以在Ionic中做,你可以在离子内部看到 .run 功能,你可以为应用程序编写一个打开它时应该做的功能。
app.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
if(window.cordova && window.cordova.plugins.Keyboard) {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
// Don't remove this line unless you know what you are doing. It stops the viewport
// from snapping when text inputs are focused. Ionic handles this internally for
// a much nicer keyboard experience.
cordova.plugins.Keyboard.disableScroll(true);
}
if(window.StatusBar) {
StatusBar.styleDefault();
}
// write your function for capturing an event and make it use where ever you need.
});
})
.run会在应用程序打开时自动运行并设置该应用程序所需的所有内容,因此请尝试将其中的内容放入其中,以便您轻松完成任务