重学beego

梦想的初衷 提交于 2019-12-02 14:54:34

实现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"	//向前端发送数据	
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!