gpt4 book ai didi

javascript - 如何在angular js中声明设备就绪

转载 作者:行者123 更新时间:2023-11-29 21:59:38 25 4
gpt4 key购买 nike

有一个 app.js 文件,但没有找到准确包含设备就绪方法的位置。

谁能帮帮我。

应用程序.js:

var app = angular.module('myApp',[
'ngRoute'
]).config([]).run().directive();

我需要在哪里准确地插入设备就绪方法。

最佳答案

您可以手动启动 Angular 应用程序,从 HTML 中删除 ng-app 属性,这将阻止 Angular 启动。

添加代码以引导您的 Angular 应用

document.addEventListener("deviceready", function() {

//Your code

// Find the DOM element where you want to add ng-app
var element = document.querySelector(...);

angular.bootstrap(element, "YourAppName"); //Or simple document in place of element
}, false);

Also read

关于javascript - 如何在angular js中声明设备就绪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24530301/

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