如何在 AngularJS 中调试 "Cannot read property 'module' of undefined"?
How to debug "Cannot read property 'module' of undefined" in AngularJS?
我通过控制台收到此错误 运行 scripts/test.bat
Chrome 48.0.2564 (Windows 7 0.0.0) ERROR
Uncaught TypeError: Cannot read property 'module' of undefined
我在 Windows 7 岁以下,你可以注意到并使用 Angular 种子。
在 files:[] 部分下的 karma 配置中列出测试文件之前,您似乎错过了加载 angular-mock 库。在列出任何测试文件之前,您需要加载 angular-mock 库。请注意 angular-mocks 库反过来期望 angular.js 在它之前加载。
我通过控制台收到此错误 运行 scripts/test.bat
Chrome 48.0.2564 (Windows 7 0.0.0) ERROR
Uncaught TypeError: Cannot read property 'module' of undefined
我在 Windows 7 岁以下,你可以注意到并使用 Angular 种子。
在 files:[] 部分下的 karma 配置中列出测试文件之前,您似乎错过了加载 angular-mock 库。在列出任何测试文件之前,您需要加载 angular-mock 库。请注意 angular-mocks 库反过来期望 angular.js 在它之前加载。