我在客户端使用beego框架作为我的API框架和AngularJS。
我已正确设置所有CORS设置。我可以做GET请求。但是,当我尝试POST时,beego视为OPTIONS请求。它还会发出警告:multiple response.WriteHeader calls
。什么可能出错?
my beego CORS设置:
func init() {
orm.RegisterDataBase("default", "mysql", "root:@tcp(127.0.0.1:3306)/fakeapi")
beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{
AllowOrigins: []string{"*"},
AllowMethods: []string{"GET", "DELETE", "PUT", "PATCH", "POST"},
AllowHeaders: []string{"Origin"},
ExposeHeaders: []string{"Content-Length"},
AllowCredentials: true,
}))
}
我的ANgularJS请求
var transaction = $http.post(BASE_URL + "transaction", transactionData);
return $q.all([transaction]).then(function(response) {
console.log(response);
});
我的系统: Ubuntu 14.04 beego:1.4.2 蜜蜂:1.2.4 angularJS:1.3.12
答案 0 :(得分:2)
这可能是因为当前待处理的问题/拉取请求合并为主要版本:issue 912
如果没有这一行,一切都很好:: router.go#L861
这似乎与commit 3bb4d6f一致,显示:
// Write status code if it has been set manually
// Set it to 0 afterwards to prevent "multiple response.WriteHeader calls"
(并router.go
设置状态,因此出现错误消息)
Commit f962457应该可以解决这个问题,但尚未合并。
另一个issue 904提到无法检索先前在会话引擎中注册的会话数据。 也许Session.on flag可以提供帮助。
答案 1 :(得分:0)
我这样处理,我希望它有所帮助
import (
_ "info_apoyo/routers"
"github.com/astaxie/beego"
"github.com/astaxie/beego/plugins/cors"
)
func main() {
if beego.BConfig.RunMode == "dev" {
beego.BConfig.WebConfig.DirectoryIndex = true
beego.BConfig.WebConfig.StaticDir["/swagger"] = "swagger"
}
beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{
AllowOrigins: []string{"*"},
AllowMethods: []string{"GET", "POST", "DELETE", "PUT", "PATCH"},
AllowHeaders: []string{"Origin", "content-type", "Access-Control-
Allow-Origin"},
ExposeHeaders: []string{"Content-Length", "Access-Control-Allow-
Origin"},
AllowCredentials: true,
}))
beego.Run()
}