// 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 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐