我在MVC 5布局页面中有一个基本指令,带有搜索指令。我的问题是无法加载templateUrl(400错误)。如果我直接在浏览器中输入URL,我可以毫不费力地加载html页面。我无法找出加载页面的AJAX调用失败的原因。
Chrome调试程序
这是Chrome中加载的HTML页面
app.js
(function() {
var app = angular.module("mainApp");
app.directive("basicSearch", function() {
return {
templateUrl: 'app/directives/basic-search.html',
controller: function($scope, search) {
$scope.keyword = '';
$scope.exact = false;
$scope.submitSearch = function () {
search.searchByKeyword($scope.keyword, 0, $scope.exact);
}
}
}
});
}());
基本-search.html
<div>
<input type="search" ng-model="keyword" name="keyword" />
<button type="submit" ng-click="submitSearch()"></button>
<input type="checkbox"ng-model="exact" name="exact" />
<label for="exact">Exact Match?</label>
</div>
_Layout.cshtml
<html>
<head>
<base href="@Request.ApplicationPath" />
<!--- JS & CS References -->
<title></title>
</head>
<body ng-app="mainApp">
<!-- Other stuff -->
<basic-search></basic-search>
<!-- More other stuff -->
@RenderBody()
</body>
</html>
修改 这是成功的请求(通过浏览器):
这是失败的(通过Angular指令):
答案 0 :(得分:3)
我解决了。似乎有人在模块配置中添加以下内容作为尝试解决IE错误(惊讶,惊讶):
//initialize get if not there
if (!$httpProvider.defaults.headers.get) {
$httpProvider.defaults.headers.get = {};
}
//disable IE ajax request caching
$httpProvider.defaults.headers.get["If-Modified-Since"] = "0";
我删除了它,清除了我的缓存,它工作正常。