0

我正在尝试hasMany使用数据绑定通过表单更新关系,但我得到的数据params似乎不正确。

领域类:

class CustomerSite {

static hasMany = [dhrs:DeviceHistoryRecord];

static mapping = {
    id generator:'sequence', params:[sequence:'cs_seq']
}
    ...
}

编辑视图:

...
<g:select name="dhrs" id="dhrs" 
from="${DeviceHistoryRecord.list()}"
multiple="multiple"
optionKey="id"
value="${customerSiteInstance?.dhrs}"/>

控制器:

def update = {
    def customerSiteInstance = CustomerSite.get( params.id )
    if(customerSiteInstance) {

        customerSiteInstance.properties = params

        String flashMsg = new String();

        flash.message = "";

        if(!customerSiteInstance.hasErrors() && customerSiteInstance.save()) {
            flash.message += "Customer Site ${customerSiteInstance.toString()} updated"
            redirect(action:show,id:customerSiteInstance.id)
        }
        else {
            flash.message = flashMsg
            render(view:'edit',model:[customerSiteInstance:customerSiteInstance])
        }
    }
    else {
        flash.message = "Customer Site not found with id ${params.id}"
        redirect(action:edit,id:params.id)
    }
}

这给了我一个错误:

错误 200:org.springframework.beans.NotReadablePropertyException:bean 类 [java.lang.String] 的无效属性“currentDeviceData”:Bean 属性“currentDeviceData”不可读或具有无效的 getter 方法:getter 的返回类型是否匹配设置器的参数类型?

在控制器代码的这一行:

if(!customerSiteInstance.hasErrors() && customerSiteInstance.save()) {

这对我来说没有任何意义,但我做了一些愚弄(实际上很多),最终发现它g:select正在将一组索引传递给参数。

视图输出我认为正确的代码:

<select name="dhrs" id="dhrs" multiple="multiple" >
  <option value="2421" >801122</option>
  <option value="2422" >801123</option>
  ...

如果我要在列表的索引 0 和索引 1 处选择项目,它不会像我期望的那样传入一组“2421”和“2422”。它传入“0”和“1”。更糟糕的是,在我运行之后,当我回到编辑页面并再次运行它时,这次选择索引 8 处的内容,它将有“8”......还有“0”和“1” “上次的。

环顾四周,我发现Selecting multiple values from select tag - Grails,它还有一些其他想法,包括进行如下更改:

<g:select name="dhrs.id" 
  from="${DeviceHistoryRecord.list()}" 
  multiple="multiple" 
  optionKey="id" 
  value="${customerSiteInstance?.dhrs*.id}"/>

但这给了我一个缺少的方法错误,尽管它确实解决了返回索引而不是实际值的问题。

关于这里发生了什么以及如何解决它的任何想法?

顺便说一句,我正在运行 1.0.4 版的 Grails。是的,我很想升级它,但我不能。

谢谢!

4

2 回答 2

1

我花了更多时间在这上面,并得到了部分解决方案。这就是我最终得到的结果:

<g:select name="dhrsX.id" 
          from="${DeviceHistoryRecord.list()}"
          multiple="multiple"
          optionKey="id"
          value="${customerSiteInstance?.dhrs*.id}"/>

注意那是dhrsX- 不是dhrs。这样,我可以在将它们设置到CustomerSite对象之前手动查找它们。唯一的复杂情况是,如果用户选择一个项目,则dhrsX包含一个String; 如果用户选择多个项目,则dhrsX包含Strings 的列表。为了解决这个问题,我需要重新打包选择结果,然后再尝试直接使用它们。

def update = {
    def customerSiteInstance = CustomerSite.get( params.id )
    if(customerSiteInstance) {

        customerSiteInstance.properties = params
        customerSiteInstance.dhrs.clear()

        for(thisDHR in params.dhrsX) {
            def value = thisDHR.getValue()
            def ArrayList<String> list = new ArrayList<String>();
            if (value instanceof String) {
                list.add(value)
            } else {
                for(oneValue in value) {
                    list.add(oneValue)
                }
            }

            for(aDHR in list){
                DeviceHistoryRecord rec = DeviceHistoryRecord.get(aDHR)
                if (rec != null) {
                    customerSiteInstance.addToDhrs(rec)
                } else {
                    print(thisDHR + " NOT FOUND!")
                }
            }
        }
...

现在单选和多选工作......但还有一个小问题。尽管在添加新选择之前进行了调用clear()dhrs但之前的选择仍然存在。但是,我不希望这几乎像修复一样复杂。

于 2012-07-18T11:47:20.997 回答
0

在 g:select 中使用:

value="${customerSiteInstance?.dhrs?.id}"

问号而不是星号。这就是我拥有“多选”的方式。

于 2012-07-17T15:09:46.320 回答