AngularJS错误:只支持协议方案的跨源请求:http、data、chrom-扩展名、https。我有一个非常简单的角js应用程序的三个文件。index.html<!DOCTYPE html><html ng-app="gemStore">
<head>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.min.js'></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body ng-controller="StoreController as store">
<div class="list-group-item" ng-repeat="product in store.products">
<h3>{{product.name}} <em class="pull-right">{{product.price | currency}}</em></h3>
</div>
<product-color></product-color>
</body></html>产品-彩色.html<div class="list-group-item">
<h3>Hello <em class="pull-right">Brother</em></h3></div>app.js(function() {
var app = angular.module('gemStore', []);
app.controller('StoreController', function($http){
this.products = gem;
}
);
app.directive('productColor', function() {
return {
restrict: 'E', //Element Directive
templateUrl: 'product-color.html'
};
}
);
var gem = [
{
name: "Shirt",
price: 23.11,
color: "Blue"
},
{
name: "Jeans",
price: 5.09,
color: "Red"
}
];})();当我使用名为ProductColor的自定义指令输入了Product-chro.html的包含时,我就开始得到这个错误:XMLHttpRequest cannot load file:///C:/product-color.html. Cross origin requests are only supported for protocol schemes: http, data, chrome-extension, https, chrome-extension-resource.angular.js:11594 Error: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'file:///C:/product-color.html'.可能出什么问题了?这是产品的路径问题吗?我的三个文件都在同一个根文件夹中。C:/user/project
3 回答
拉风的咖菲猫
TA贡献1995条经验 获得超2个赞
非常简单的修正
转到应用程序目录 启动SimpleHTTPServer
$ cd yourAngularApp~/yourAngularApp $ python -m SimpleHTTPServer
繁花如伊
TA贡献2012条经验 获得超12个赞
ThinkPad-T430:~$ google-chrome --allow-file-access-from-filesThinkPad-T430:~$ google-chrome --allow-file-access-from-files fileName.htmlThinkPad-T430:~$ chromium-browser --allow-file-access-from-filesThinkPad-T430:~$ chromium-browser --allow-file-access-from-files fileName.html
cmd
- 3 回答
- 0 关注
- 597 浏览
添加回答
举报
0/150
提交
取消