我有过
angular.module("myModule", [
//Some dependency
"ngMockE2E"
])这实际上是模拟模板请求和抛出错误。
Unexpected request: GET javascripts/custom/utils/templates/global_loader.html
No more request expected
at $httpBackend (angular-mocks.js?e_a_v=5:1226)
at sendReq (angular.js?e_a_v=5:10215)
at $get.serverRequest (angular.js?e_a_v=5:9927)
at processQueue (angular.js?e_a_v=5:14437)
at angular.js?e_a_v=5:14453
at Scope.$get.Scope.$eval (angular.js?e_a_v=5:15702)
at Scope.$get.Scope.$digest (angular.js?e_a_v=5:15513)
at Scope.$get.Scope.$apply (angular.js?e_a_v=5:15807)
at bootstrapApply (angular.js?e_a_v=5:1628)
at Object.invoke (angular.js?e_a_v=5:4426)如果我评论一下ngMockE2E,它可以正常工作。知道我做错了什么吗?
发布于 2015-06-18 05:11:33
ngMockE2E引入了$httpBackend,所以是的,所有的HTTP请求都是模拟的。若要加载模板,请将其添加到模块中。
.run(function($httpBackend) {
// pass through template requests
$httpBackend.whenGET(/\.html$/).passThrough();
});https://stackoverflow.com/questions/30906846
复制相似问题