我正在使用服务器端的 beego 框架和客户端的 AngularJS 开发 RESTFul API。服务器和客户端都在我的笔记本电脑中(仍在开发中)。客户端在 127.0.0.1:8000 上运行,服务器在 127.0.0.1:8080 上运行。

当我尝试访问端点时(使用 AngularJS $http 服务)。我收到以下错误:

XMLHttpRequest cannot load http://127.0.0.1:8080/v1/products/. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1:8000' is therefore not allowed access.

我知道我必须在 beego 上设置这个 CORS 东西。不幸的是,在搜索谷歌后,我得到的唯一答案是来自官方网站(in the comment section),这对我来说还不够清楚。有什么建议吗?我应该写什么样的代码以及把它放在 beego 上的什么地方?谢谢。

最佳答案

您想通过在导入语句中包含“github.com/astaxie/beego/plugins/cors”来使用 cors 插件。

该软件包有一个注释掉的示例,如下所示:

 func main() {
 // CORS for https://foo.* origins, allowing:
 // - PUT and PATCH methods
 // - Origin header
// // - Credentials share
 beego.InsertFilter("*", beego.BeforeRouter,cors.Allow(&cors.Options{
 AllowOrigins: []string{"https://*.foo.com"},
 AllowMethods: []string{"PUT", "PATCH"},
 AllowHeaders: []string{"Origin"},
 ExposeHeaders: []string{"Content-Length"},
 AllowCredentials: true,
 }))
 beego.Run()
 }

因此,如果您希望任何人都能够访问您的后端,请将 AllowOrigins 参数更改为 []String{"*"}。并且大概在 AllowMethods 参数中包含“GET”。

关于angularjs - beego框架中如何设置access-control-allow-origin,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28216342/

10-16 12:32