gpt4 book ai didi

angularjs - ionic 应用程序启动事件

转载 作者:行者123 更新时间:2023-12-04 13:49:25 24 4
gpt4 key购买 nike

我的angularjs ionic 应用程序有问题。登录期间,我们正在加载各种设置。如果我取消了该应用程序并重新启动,则不会加载这些设置。

我需要知道在应用程序启动时是否有一个正在被调用的事件,以便我可以重新加载我的应用程序设置。

谢谢

最佳答案

您可以在 YourIndex.html的 Controller 中添加代码行以加载设置,也可以将该代码放在$ionicPlatform.ready下。

选项1: index.html 的 Controller 中运行它,因为每次打开应用程序时,都会加载该 Controller 。

var myApp = angular.module('myApp', ['ionic']);

myApp.config(function($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise('/')

$stateProvider.state('index', {
url: '/',
controller: 'IndexCtrl',
})
});

myApp.controller('IndexCtrl', function($scope) {
//load your settings from localStorage or DB where you saved.
});

选项2:每次Ionic调用 deviceReady时调用一次。
var myApp = angular.module('myApp', ['ionic']);
myApp.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
//load your settings from localStorage or DB where you saved.
});
});

关于angularjs - ionic 应用程序启动事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29469291/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com