beego + 返回json测试
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
// Beego project main.go
package main
import (
"fmt"
"github.com/astaxie/beego"
)
type MainController struct {
beego.Controller
}
type FileController struct {
beego.Controller
}
func (this *MainController) Get() {
this.Ctx.WriteString("hello world")
}
func (this *FileController) Post() {
_, h, err := this.GetFile("file")
if err != nil {
fmt.Println("getfile err ", err)
}
fmt.Println("filename:", h.Filename)
this.SaveToFile("file", "e://temp/upload/"+h.Filename)
this.Ctx.WriteString("hello 1111")
}
func (this *FileController) Get() {
this.Data["json"] = map[string]interface{}{"success": 0, "message": "111"}
this.ServeJson()
return
//this.Ctx.WriteString("hello 1111")
}
func main() {
fmt.Println("Hello Beego")
beego.Router("/", &MainController{})
beego.Router("/upload", &FileController{})
beego.Run()
}
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
7 个月前
更多推荐
已为社区贡献7条内容
所有评论(0)