gpt4 book ai didi

javascript - 类型错误 : module is not a function AngularJS & Jasmine

转载 作者:数据小太阳 更新时间:2023-10-29 04:08:55 26 4
gpt4 key购买 nike

在我的示例应用程序中,我像这样测试运行器

  <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<!--angular-->
<script src="../../../Scripts/angular.min.js"></script>
<!--jasmine-->
<img src="../../../Content/jasmine/jasmine_favicon.png" />
<link href="../../../Content/jasmine/jasmine.css" rel="stylesheet" />
<script src="../../../Scripts/jasmine/jasmine.js"></script>
<script src="../../../Scripts/jasmine/jasmine-html.js"></script>
<script src="../../../Scripts/jasmine/boot.js"></script>
<!--angular mocks-->
<script src="../../../Scripts/angular-mocks.js"></script>
<!--app tests-->
<script src="../../FavoritesController.js"></script>
<script src="FavoritesController.Tests.js"></script>
</body>
</html>

收藏夹 Controller :

  var module = angular.module('AngularSampleApp', []);
var FavoritesController = module.controller('FavoritesController', function favoritesController($scope) {
$scope.phones = [
{
'name': 'Nexus S',
'snippet': 'Fast just got faster with Nexus S.'
},
{
'name': 'Motorola XOOM™ with Wi-Fi',
'snippet': 'The Next, Next Generation tablet.'
},
{
'name': 'MOTOROLA XOOM™',
'snippet': 'The Next, Next Generation tablet.'
}
];

});

FavoritesController.Tests.js

describe('FavoritesController', function () {
beforeEach(module('AngularSampleApp'));
it('should create "phones" model with 3 phones', inject(function ($controller) {
var scope = {},
ctrl = $controller('FavoritesController', { $scope: scope });

expect(scope.phones.length).toBe(3);
}));
});

但我得到:

TypeError: module is not a function

运行测试后出现错误。我错过了什么吗?

最佳答案

你需要在 Jasmine 之后包含 angular-mocks.js 否则像 moduleinject 这样的功能将不会被定义。

此外你重新定义了module:

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

因此,要么重命名变量,要么将代码放入 IIFE 中。

关于javascript - 类型错误 : module is not a function AngularJS & Jasmine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32274062/

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