我已经检查了与我的问题类似的其他问题。但是在每种情况下,这个问题显然都是不同的。 Angular Jasmine Test抱怨 TypeError:'undefined'不是discoverDependentFields上的对象(评估'fields.forEach')
这是我的discoverDependentFields函数
discoverDependentFields($scope.response.Fields);
function discoverDependentFields(fields) {
fields.forEach(function (field) {
field.DependencyFieldEvaluated = '';
if (field.DependencyField) {
var foundFields = fields.filter(function (fieldToFind) { return fieldToFind.Name === field.DependencyField; });
if (foundFields.length === 1) {
field.DependencyFieldEvaluated = foundFields[0];
}
}
});
}
在测试中我有这个位
this.controller('MyController', {
'$scope': this.scope,
}
});
this.scope.response.Fields = [
{
Name: "UserIdentity",
Value: {
"FirstName": "John"
},
PropertyName: "User.Identity"
}
];
我在像这样的指令中的函数中使用field.DependencyFieldEvaluated的值
function dependencyMet(field) {
var dependentField = field.DependencyFieldEvaluated;
var met = compareToDependencyValue(field, dependentField.Value);
return met;
}
我不知道为什么抱怨
答案 0 :(得分:2)
如果
discoverDependentFields($scope.response.Fields);
是控制器中的一行,然后您需要在实例化控制器之前设置$scope.response.Fields
数据。换句话说,将测试中的操作顺序交换为
this.scope = {};
// or maybe this.scope = $rootScope.$new()
this.scope.response = {
Fields: [{
Name: "UserIdentity",
Value: {
FirstName: "John"
},
PropertyName: "User.Identity"
}]
};
this.controller('MyController', {
$scope: this.scope,
});