我有一个服务器设置,一切都很好,但我收到了关于
.... is not allowed by Access-Control-Allow-Origin
这很奇怪,因为托管我的 Angular.js 站点的 grunt 服务器都在端口 9000 上,而我的休息服务在端口 8678 上。
无论如何我发现了这个
https://gist.github.com/Vp3n/5340891
它解释了如何在 grunt 服务器上启用 CORS,但我的 grunt 文件看起来不一样......这是我当前的 grunt 文件部分
connect: {
options: {
port: 9000,
// Change this to '0.0.0.0' to access the server from outside.
hostname: 'localhost'
},
livereload: {
options: {
middleware: function (connect) {
return [
lrSnippet,
mountFolder(connect, '.tmp'),
mountFolder(connect, yeomanConfig.app)
];
}
}
},
test: {