Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
24
rated 0 times [  27] [ 3]  / answers: 1 / hits: 47983  / 9 Years ago, sun, march 8, 2015, 12:00:00

I'm very new to Angular SPA and for the first time I get a code by Googling and try to run. But I get some errors in Console. I couldn't figure out why, I found list of following Console errors:




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>

More From » jquery

 Answers
201

On Windows:



chrome.exe --allow-file-access-from-files


or



chrome.exe --allow-file-access-from-files --disable-web-security


On Mac:



open /Applications/Google Chrome.app/ --args --allow-file-access-from-files

[#67529] Thursday, March 5, 2015, 9 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
destanyb

Total Points: 407
Total Questions: 88
Total Answers: 88

Location: Senegal
Member since Mon, Sep 5, 2022
2 Years ago
;