Error: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'file' : AngularJS SPA
Error: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'file' : AngularJS SPA
我是 Angular SPA 的新手,这是我第一次通过谷歌搜索获得代码并尝试 运行。但是我在控制台中遇到了一些错误。我不知道为什么,我发现了以下控制台错误列表:
XMLHttpRequest cannot load
file:///C:/Users/hp/Downloads/single-page-app-angularjs-master/home.html.
Cross origin requests are only supported for protocol schemes: http,
data, chrome, chrome-extension, https, chrome-extension-resource.
Error: Failed to execute 'send' on 'XMLHttpRequest': Failed to load
'file:///C:/Users/hp/Downloads/single-page-app-angularjs-master/home.html'.
XMLHttpRequest cannot load
file:///C:/Users/hp/Downloads/single-page-app-angularjs-master/about.html.
Cross origin requests are only supported for protocol schemes: http,
data, chrome, chrome-extension, https, chrome-extension-resource.
Error: [$compile:tpload]
http://errors.angularjs.org/1.3.3/$compile/tpload?p0=home.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Single page web app using Angularjs</title>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.3/angular-route.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="single-page-app">
<div ng-controller="cfgController">
<div>
<nav class="navbar navbar-inverse" role="navigation" style="padding-left:130px;">
<ul class="nav navbar-nav">
<li class="active"><a href="#/">Home<span class="sr-only">(current)</span></a></li>
<li><a href="#/about">About us</a></li>
<li><a href="#/about">Read tutorial</a></li>
</ul>
</nav>
</div>
<br/>
<div ng-view class="jumbotron"></div>
</div>
</body>
</html>
我遇到过类似的事情并通过使用像 Glassfish
...
这样的应用程序服务器解决了
换句话说,使用 http://
协议而不是 file://
在 Windows:
chrome.exe --allow-file-access-from-files
或
chrome.exe --allow-file-access-from-files --disable-web-security
在 Mac:
open /Applications/Google\ Chrome.app/ --args --allow-file-access-from-files
我是 Angular SPA 的新手,这是我第一次通过谷歌搜索获得代码并尝试 运行。但是我在控制台中遇到了一些错误。我不知道为什么,我发现了以下控制台错误列表:
XMLHttpRequest cannot load file:///C:/Users/hp/Downloads/single-page-app-angularjs-master/home.html. Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https, chrome-extension-resource.
Error: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'file:///C:/Users/hp/Downloads/single-page-app-angularjs-master/home.html'. XMLHttpRequest cannot load file:///C:/Users/hp/Downloads/single-page-app-angularjs-master/about.html. Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https, chrome-extension-resource.
Error: [$compile:tpload] http://errors.angularjs.org/1.3.3/$compile/tpload?p0=home.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Single page web app using Angularjs</title>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.3/angular-route.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="single-page-app">
<div ng-controller="cfgController">
<div>
<nav class="navbar navbar-inverse" role="navigation" style="padding-left:130px;">
<ul class="nav navbar-nav">
<li class="active"><a href="#/">Home<span class="sr-only">(current)</span></a></li>
<li><a href="#/about">About us</a></li>
<li><a href="#/about">Read tutorial</a></li>
</ul>
</nav>
</div>
<br/>
<div ng-view class="jumbotron"></div>
</div>
</body>
</html>
我遇到过类似的事情并通过使用像 Glassfish
...
换句话说,使用 http://
协议而不是 file://
在 Windows:
chrome.exe --allow-file-access-from-files
或
chrome.exe --allow-file-access-from-files --disable-web-security
在 Mac:
open /Applications/Google\ Chrome.app/ --args --allow-file-access-from-files