[TOC]
  • Multipart/Urlencoded Form

Multipart/Urlencoded Form

func main() {    app := iris.Default()    app.Post("/form_post", func(ctx iris.Context) {        message := ctx.PostValue("message")        nick := ctx.PostValueDefault("nick", "anonymous")        ctx.JSON(iris.Map{            "status":  "posted",            "message": message,            "nick":    nick,        })    })    app.Listen(":8080")}