本文介绍了XMLHtt prequest无法加载角的js文件错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在调试中webStorm IDE的角度JS应用程序时出现以下错误
While debugging an Angular js application in webStorm IDE the following error occurs
XMLHtt prequest无法加载文件:/// C:/Users/../list.html。跨起源请求仅支持HTTP。
XMLHttpRequest cannot load file:///C:/Users/../list.html. Cross origin requests are only supported for HTTP.
的Javascript code:
Javascript code :
var amailServices = angular.module('Amail',['ngRoute']);
function emailRouteConfig($routeProvider) {
$routeProvider.
when('/', {
controller: ListController,
templateUrl : 'list.html'}).
when('/view/:id',{
controller : DetailsController,
templateUrl:'detail.html'}).
otherwise({
redirectTo:'/'
});
}
amailServices.config(emailRouteConfig);
如何解决这个问题。
How to fix this
推荐答案
这是网络风暴IDE修复。
It was a fix in web storm IDE .
我改变了服务器的http://本地主机:63342 /
现在它工作正常,在调试
Now it works fine in debugging
这篇关于XMLHtt prequest无法加载角的js文件错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!