为了账号安全,请及时绑定邮箱和手机立即绑定

Beego - 创建模型表单和 ORM

Beego - 创建模型表单和 ORM

Go
互换的青春 2021-09-27 15:32:26
我使用以下代码创建了一个模型: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>


查看完整回答
反对 回复 2021-09-27
  • 1 回答
  • 0 关注
  • 174 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信