博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Error: $injector:modulerr Module Error
阅读量:4918 次
发布时间:2019-06-11

本文共 1964 字,大约阅读时间需要 6 分钟。

Failed to instantiate module app due to://实例化失败Error: [$injector:modulerr] )    at http://localhost:56500/Scripts/angular.min.js:7:76    at http://localhost:56500/Scripts/angular.min.js:43:70    at p (http://localhost:56500/Scripts/angular.min.js:8:7)    at g (http://localhost:56500/Scripts/angular.min.js:42:138)    at http://localhost:56500/Scripts/angular.min.js:42:322    at p (http://localhost:56500/Scripts/angular.min.js:8:7)    at g (http://localhost:56500/Scripts/angular.min.js:42:138)    at hb (http://localhost:56500/Scripts/angular.min.js:46:250)    at c (http://localhost:56500/Scripts/angular.min.js:22:19)    at Uc (http://localhost:56500/Scripts/angular.min.js:22:332

Description

This error occurs when a module fails to load due to some exception. The error message above should provide additional context.

A common reason why the module fails to load is that you've forgotten to include the file with the defined module or that the file couldn't be loaded.

当模块由于某些异常而无法加载时,会发生此错误。 上面的错误信息应该提供额外的上下文。

模块无法加载的常见原因是您忘记将文件包含在定义的模块中,或者该文件无法加载。

Using ngRoute

In AngularJS 1.2.0 and later, ngRoute has been moved to its own module. If you are getting this error after upgrading to 1.2.x or later, be sure that you've installed .

在AngularJS 1.2.0及更高版本中,ngRoute已被移至其自己的模块。 如果在升级到1.2.x或更高版本后收到此错误,请确保已经安装了ngRoute。(若已安装,请确保正确引用)

Monkey-patching AngularJS's ng module

This error can also occur if you have tried to add your own components to the ng module. This has never been supported and from 1.3.0it will actually trigger this error. For instance the following code could trigger this error.

如果您尝试将自己的组件添加到ng模块,也可能会发生此错误。 这从未被支持,从1.3.0it将实际触发此错误。 例如,以下代码可能会触发此错误。

angular.module('ng').filter('tel', function (){});

Instead create your own module and add it as a dependency to your application's top-level module. See  and  for more information

你可以创建自己的模块,并将其作为依赖关系添加到应用程序的顶级模块中。 有关详细信息,请参阅#9692和#7709

转载于:https://www.cnblogs.com/JackeyLove/p/7680167.html

你可能感兴趣的文章
avi文件格式详解【转】
查看>>
django
查看>>
Java学习从入门到精通
查看>>
查找目录下的所有文件中是否含有某个字符串 linux
查看>>
66. Plus One 数组加1
查看>>
范式原则
查看>>
2018年各大互联网前端面试题四(美团)
查看>>
一起学Python:字符串介绍
查看>>
学习笔记:树状数组
查看>>
洛谷P1772 [ZJOI2006]物流运输 题解
查看>>
CF519E A and B and Lecture Rooms
查看>>
python-redis之数据类型二
查看>>
Java类加载机制
查看>>
数据库的最简单实现
查看>>
循环单链表实现
查看>>
Android设计模式实战---责任链模式
查看>>
剑指Offer_31_整数中1出现的次数(从1到n整数中1出现的次数)
查看>>
10月29日 迅雷会员vip账号分享 91freevip 晚间21:00更新
查看>>
【一题多解】Python 字符串逆序
查看>>
open ball、closed ball 与 open set、closed set(interior point,limit point)、dense set
查看>>