我使用以下代码创建了一个模型:type UserProfile struct { Id int `orm:"auto"` Name string `orm:"size(100)"` Email string `orm:"size(100)"` Type string `orm:"size(30)"` Admin bool Car []*Car `orm:"reverse(many)"`}有什么办法可以直接使用这种结构渲染表单吗?我认为valid:requiredrake 关心验证,但我们如何控制表单渲染。
1 回答
智慧大石
TA贡献1946条经验 获得超3个赞
在控制器中:
func (this *AddController) Get() {
this.Data["Form"] = & UserProfile{}
this.TplNames = "index.tpl"
}
在模板中:
<form action="" method="post">
{{.Form | renderform}}
</form>
- 1 回答
- 0 关注
- 174 浏览
添加回答
举报
0/150
提交
取消