gpt4 book ai didi

angularjs - Cordova + Angularjs + 设备就绪

转载 作者:行者123 更新时间:2023-12-03 05:50:35 25 4
gpt4 key购买 nike

我正在使用 Cordova 和 AngularJS 开发移动应用程序。如何在 Cordova 设备准备就绪之前限制 AngluarJS 的引导。基本上我不想在设备准备好之前使用任何 AngularJS Controller 。

最佳答案

手动引导您的 Angular 应用:

从 HTML 代码中删除 ng-app 属性,这样 Angular 就不会自行启动。

将这样的内容添加到 JavaScript 代码中:

document.addEventListener("deviceready", function() {
// retrieve the DOM element that had the ng-app attribute
var domElement = document.getElementById(...) / document.querySelector(...);
angular.bootstrap(domElement, ["angularAppName"]);
}, false);

bootstrapping 的 Angular 文档应用程序。

关于angularjs - Cordova + Angularjs + 设备就绪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21556090/

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