mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
af9a1f1241
Former-commit-id: 3c1fb7ad47d54133f68ee0ee8ebe4c3835fe4ce0
44 lines
974 B
Go
44 lines
974 B
Go
package main
|
|
|
|
// $ go get github.com/rs/cors
|
|
// $ go run main.go
|
|
|
|
import (
|
|
"github.com/kataras/iris"
|
|
|
|
"github.com/iris-contrib/middleware/cors"
|
|
)
|
|
|
|
func main() {
|
|
|
|
app := iris.New()
|
|
crs := cors.New(cors.Options{
|
|
AllowedOrigins: []string{"*"}, // allows everything, use that to change the hosts.
|
|
AllowCredentials: true,
|
|
})
|
|
|
|
v1 := app.Party("/api/v1")
|
|
v1.Use(crs)
|
|
{
|
|
v1.Get("/home", func(ctx iris.Context) {
|
|
ctx.WriteString("Hello from /home")
|
|
})
|
|
v1.Get("/about", func(ctx iris.Context) {
|
|
ctx.WriteString("Hello from /about")
|
|
})
|
|
v1.Post("/send", func(ctx iris.Context) {
|
|
ctx.WriteString("sent")
|
|
})
|
|
}
|
|
|
|
// or use that to wrap the entire router
|
|
// even before the path and method matching
|
|
// this should work better and with all cors' features.
|
|
// Use that instead, if suits you.
|
|
// app.WrapRouter(cors.WrapNext(cors.Options{
|
|
// AllowedOrigins: []string{"*"},
|
|
// AllowCredentials: true,
|
|
// }))
|
|
app.Run(iris.Addr("localhost:8080"))
|
|
}
|