gpt4 book ai didi

javascript - 在 Meteor 中启用跨源资源共享?

转载 作者:行者123 更新时间:2023-11-30 12:05:02 25 4
gpt4 key购买 nike

我正在尝试获取从我的主应用程序到外部 Angular 应用程序的 channel 列表。

我添加了 https://github.com/stubailo/meteor-rest/blob/master/packages/rest/README.md到我的主要 meteor 应用程序,现在我可以使用 json 格式的 url 获取集合。

现在,当我尝试从外部 Angular 应用程序发出 http 请求时,问题就来了。

这是我的主要 meteor 应用程序中的内容:

'use strict'

Meteor.publish('channels', function (index) {
return Channels.find({});
}, {
url: 'channels',
httpMethod: 'get'
});

这是我用来在外部 Angular 应用程序中发出 http 请求的方法:

// Simple GET request example:
$http.get('http://example.com/channels').then(function successCallback(response) {
// this callback will be called asynchronously
// when the response is available
console.log('success');
console.log(response);
}, function errorCallback(response) {
// called asynchronously if an error occurs
// or server returns response with an error status.
console.log('error');
console.log(response);
});

但是我得到的响应是一个错误:

XMLHttpRequest 无法加载 http://example.com/channels。请求的资源上不存在“Access-Control-Allow-Origin” header 。因此不允许访问源“http://localhost”。

我该怎么做才能解决这个问题?

最佳答案

来自documentation在 meteor-rest 包上:

If you would like to use your API from the client side of a different app, you need to return a special header. You can do this by hooking into a method on the simple:json-routes package, like so:

// Enable cross origin requests for all endpoints
JsonRoutes.setResponseHeaders({
"Cache-Control": "no-store",
"Pragma": "no-cache",
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, PUT, POST, DELETE, OPTIONS",
"Access-Control-Allow-Headers": "Content-Type, Authorization, X-Requested-With"
});

关于javascript - 在 Meteor 中启用跨源资源共享?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35492462/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com