我有一个指令,根据属性中传入的参数选择模板。它工作得很好,但在我的单元测试中,我无法访问DOM。
指令模板行如下所示:
template: '<ng-include src="getTemplateUrl()"/>'
指令控制器具有:
$scope.getTemplateUrl = function () {
var template;
switch( $scope.layout ) {
case "addLocation":
template = 'app/search/primarySearchControlsAddLocation.html';
break;
default:
template = 'app/search/primarySearchControlsSidebar.html';
}
return template;
};
单元测试如下:
it( 'Should disable the client control when the disableClientSelect field param is true. ', function () {
element = $compile( angular.element( '<primary-search-controls b-disable-client-select="true" layout="searchSidebar"></primary-search-controls>') )( $rootScope );
$rootScope.$apply();
expect( element[ 0 ].find( 'input.client-typeahead' ) ).to.have.class( 'disabled' );
});
当我在此测试期间转出元素的值时,我得到了这个:
LOG: {0: <!-- ngInclude: undefined -->, length: 1}
在我看来,单元测试并没有正确地解析/编译所选模板,但它在实际应用中都能正常工作。
有人能指出为什么会发生这种情况以及如何解决这个问题吗?
答案 0 :(得分:1)
通常情况下,发布后不久,我找到了解决方案。这个issue https://github.com/angular/angular.js/issues/4505建议通过用一个空div包围ng-include指令来解决类似的问题。所以我将模板属性更改为:
template: '<div><ng-include src="getTemplateUrl()"/></div>'
现在它正确编译。这是一种解决方法,但它现在可以做到。