如何将数据绑定到具有嵌套属性的命令对象? (非域对象)

时间:2012-01-25 22:12:13

标签: grails groovy command-objects

我正在尝试将一些数据绑定到作为命令对象一部分的对象。尝试使用它时,该对象保持为null。可能我没有在gsp中提供正确的数据,但我不知道我做错了什么!

我希望当我提交一个带有字段名称'book.title'的表单时,这将被映射到命令对象..但是这会失败..标题保持[null]

每当我更改命令对象和表单以使用字符串标题作为属性时,它就可以工作..

// the form that submits the data
<g:form>
   <g:textField name="book.title" value="Lord Of the Rings"/><br>
   <br><br>
   <g:actionSubmit action="create" value="Create!"/>
</g:form>


// the controller code
def create = { BooksBindingCommand cmd ->
   println cmd?.book?.title // the book property always stays null
   redirect(action: "index")
}

// the command object
class BooksBindingCommand {
   Book book
}

// the book class, simple plain groovy class
class Book {
   String title
}

关于'book.title'绑定失败原因的任何建议?

2 个答案:

答案 0 :(得分:7)

尝试在绑定之前初始化它,例如:

// the command object
class BooksBindingCommand {
   Book book = new Book()
}

答案 1 :(得分:0)

快速刺伤它。

表单字段名称可能应该是book_title而不是使用句点(不确定在控制器中处理时是否会出现问题)。

<g:textField name="book_title" value="Lord Of the Rings"/><br>

在您的控制器中,首先创建您的图书模型,然后将其分配给您想要绑定的类。

def create = {
  def mybook = new Book()
  mybook.title = params.book_title
  def binder = new BooksBindingCommand()
  binder.book = mybook
}

BooksBindingCommand是模型吗?因为我不确定你想要达到的目的。