我的应用程序中有一个User
模型和一个App
模型。与模型App
有belongs_to
关系。User
在模板apps/new.plush.html
中,我需要将用户列表呈现为下拉选择。我forms.Selectable
在模型中实现了如下界面User
-
func (a *User) SelectLabel() string {
return a.Name
}
func (a *User) SelectValue() interface{} {
return a.ID
}
中的New()
动作apps.go
看起来像这样 -
func (v AppsResource) New(c buffalo.Context) error {
tx, ok := c.Value("tx").(*pop.Connection)
if !ok {
return fmt.Errorf("no transaction found")
}
users := &models.Users{}
if atErr := tx.All(users); atErr != nil {
return c.Error(http.StatusNotFound, atErr)
}
c.Set("users", users)
c.Set("app", &models.App{})
return c.Render(http.StatusOK, r.HTML("/apps/new.plush.html"))
}
现在,如何编写 Select Tag 以呈现users
数组中的选项?
以下不起作用 -
<%= f.SelectTag("UserID", {options: users})%>