Skip to the content.

集成方法

r.Get("ccc", func(writer uc.ResponseWriter, request uc.Request) {
writer.Json.
    ContentType("application/json").
    AddHeader("time", "unix").
    Data(map[string]string{"a": "b"}).
    Status(403).
    Encode("123123").
    Send()
})