Grails域类字符串列表

时间:2014-04-06 14:52:21

标签: list grails grails-domain-class

我尝试在Grails中创建一个String列表。 因此,我的意思是:

class Name{
static hasMany = [names: String] }

我还为Class创建了一个Controller并添加到那里:

static scaffold = Name

到目前为止,它正在工作,但在视图中只有String的名称,但我无法向列表中添加任何输入。

因此,我正在寻找解决方案,希望有人可以提供帮助。

提前致谢!

1 个答案:

答案 0 :(得分:0)

你的问题不是很清楚因为你想要的东西。

如果我理解你的问题,这是我对你的回答:

1.如果您需要更多scaffolding true domain configuration,如果您使用inputs as you said Grails将根据您的add more domain variables like自动生成网页和代码。即

  class Name{
    static hasMany = [names: String]
    //to see more inputs add them here
    String description 
  }

您只有一个名为Name的域,然后您希望看到其他更多输入,您还需要其他更多成员变量或属性。 如果您对grails创建的组件不满意,可以在.gsp文件中更改它。

这里有很棒的资源http://goo.gl/f7XV8I

让我知道进一步的援助......