Как получить параметр списка из вида Grails - PullRequest
0 голосов
/ 29 октября 2010

На мой взгляд, у меня есть следующее:

<g:hiddenField name='expandableEducationList[${edIdx}]._deleted' value='false'/>
<button 
                onclick="dojo.byId('expandableEducationList[${edIdx}]._deleted').value='true'; getContainer(this, 'tr').style.display='none'"
                style="width:auto;"
                iconClass="minusIconSmall"
                showlabel="false"
                class="embedded"            
                dojoType="dijit.form.Button"></button>

Как я могу получить этот расширяемый список образов от моего контроллера?Если я выполняю «println params», я могу видеть значения там, но я хочу перебрать список и params.expandableEducationList возвращает нуль

Вот что я получаю в своем контроллере, когда я печатаю значения:1006 *

    params?.each{
        println ("it: " + it)
    }

возвращает

it: expandableEducationList[2].type.id=35
it: expandableEducationList[2]=["lastModified_day":"29", "id":"272", "lastModified_year":"2010", "areaOfStudy":"Computer
 Science", "yearGranted":"2008", "lastModified_month":"9", "_deleted":"false", "_inProcess":"", "type":["id":"35"], "col
legeName":"COLLEGE3", "type.id":"35"]
it: expandableEducationList[1]._deleted=false
it: expandableEducationList[1]=["id":"271", "lastModified_day":"29", "lastModified_year":"2010", "areaOfStudy":"Mathemat
ics and Computer Science", "yearGranted":"2009", "lastModified_month":"9", "_inProcess":"", "_deleted":"false", "type":[
"id":"30"], "type.id":"30", "collegeName":"COLLEGE1"]
it: expandableEducationList[2].id=272
it: _action_update=
it: expandableEducationList[1].lastModified_month=9
it: expandableEducationList[2].yearGranted=2008
it: expandableEducationList[1].collegeName=COLLEGE1
it: id=518
it: _expandableEducationList[2].inProcess=
it: expandableEducationListx[0]_name=42
it: expandableEducationList[0].areaOfStudy=Systems Engineering
it: expandableEducationList[0]=["lastModified_day":"29", "id":"270", "lastModified_year":"2010", "yearGranted":"2010", "
areaOfStudy":"Systems Engineering", "lastModified_month":"9", "_deleted":"false", "_inProcess":"", "type":["id":"42"], "
type.id":"42", "collegeName":"COLLEGE2"]
it: expandableEducationList[2].lastModified_day=29
it: expandableEducationList[0].id=270
it: expandableEducationList[2]._deleted=false
it: expandableEducationList[0].lastModified_day=29
it: geographicPreferences=
it: expandableEducationList[2].areaOfStudy=Computer Science
it: expandableEducationList[2].collegeName=COLLEGE3
it: expandableEducationListx[1]_name=30
it: expandableEducationList[1].lastModified_day=29
it: _expandableEducationList[0].inProcess=
it: _expandableEducationList[1].inProcess=
it: expandableEducationList[0]._deleted=false
it: expandableEducationList[1].yearGranted=2009
it: expandableEducationList[1].lastModified_year=2010
it: expandableEducationList[2].lastModified_month=9
it: expandableEducationList[1].areaOfStudy=Mathematics and Computer Science
it: expandableEducationList[2].lastModified_year=2010
it: expandableEducationList[1].id=271
it: expandableEducationListx[2]_name=35
it: expandableEducationList[0].yearGranted=2010
it: expandableEducationList[0].lastModified_month=9
it: expandableEducationList[0].collegeName=COLLEGE2
it: expandableEducationList[0].lastModified_year=2010
it: expandableEducationList[0].type.id=42
it: expandableEducationList[1].type.id=30

Ответы [ 3 ]

0 голосов
/ 29 октября 2010

"Grailsy" способ сделать это - использовать объекты Command и привязку данных.Взгляните на Связывание данных и многоплановые ассоциации здесь .

С этим вы можете создать объект Command , который сопоставляется с вашей ассоциацией изатем свяжите параметры запроса, используя что-то вроде:

def command = new MyCommand()
bindData(command, params)

Это просто альтернативное решение, которое вы упомянули в комментариях к ответу Аарона.

0 голосов
/ 14 ноября 2010

Присваивая имена следующим образом: name='expandableEducationList[${edIdx}]._deleted'

Объект params заполняется параметром, буквально называемым «expandableEducationList [1] ._ Удалено» и т. Д., По сравнению со списком с именем «expandableEducationList», который выможет получить доступ по индексу.

Другие темы StackOverflow с той же темой:

Сначала проверьте связанные потоки, так как они могут работать лучше всего.

Вот еще одно возможное решение, если вы знаете количество предметов и названия свойств:

//count is the number of items 
def expendableEducationList=(0..count).collect{
    index->
    // propNames is a list of names such as ['_.deleted', 'areaOfStudy', etc..] 
    // returns a new map with each property value
    propNames.inject([:],{
        map, prop->
        map[prop]=params["expandableEducationList[$index].$prop"]
        return map
    } 
}
0 голосов
/ 29 октября 2010

передайте его как часть модели в вашем действии контроллера, которая отображает gsp

как это ...

[expandableEducationList: ExpandableEducation.list()]

или что-то вроде этого ..

  render(view: 'viewName', 
         model: [expandableEducationList: ExpandableEducation.list()])
...