实现get()方法
1、添加要实现的路由,在router.go
2、重写get方法
3、返回一个视图
1、添加要实现的路由
beego.Router("/", &controllers.MyController{})
2、重写get方法
c.Data["Website"] = "beego.me" //向前端发送数据
c.TplName = "index.tpl" //指定接受的前端界面“index.tpl”
3、返回一个视图
在index.tpl中加入一个<div>{{.data}}</div>
接受数据
实现post()方法
1、用from表单发送post请求
2、在router.go里面去实现这个对应的路由
3、重写post发送
1、用from表单发送post请求
<from method = "post" action = "/abc"> //其中cation的值与路由的第一个参数相一致
<input type = "submit" value = "post 数据“>
</from>
2、在router.go里面去实现这个对应的路由
beego.Router("/abc", &controllers.MyController{})
3、重写post发送
c.Data["Website"] = "beego.me" //向前端发送数据
来源:https://blog.csdn.net/weixin_42094659/article/details/102776369