gpt4 book ai didi

javascript - 无法实例化 ng 应用程序

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:01:20 26 4
gpt4 key购买 nike

我有以下 app.js,它无法使用模块调用应用程序。附文件夹结构和代码截图:

核心模块.js:

(function() {
'use strict';

angular
.module('app.core');
})();

(function () {
'use strict';

angular
.module('app', [
'ngRoute',
'ngCookies',
'ngAnimate',
'ngResource',
'ngCookies',
'ngTouch',
'app.core',
'app.events'
])
.config(config);

config.$inject = ['$routeProvider', '$locationProvider', '$httpProvider'];
function config($routeProvider, $locationProvider, $httpProvider) {
$routeProvider
.when('/', {..}..

Uncaught Error: [$injector:nomod] Module 'app.core' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
enter image description here

最佳答案

angular.module() 需要第二个参数;

参见 Document

// Create a new module

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

angular
.module('app.core',[]);

关于javascript - 无法实例化 ng 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37274110/

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