Rendering few models in gson

吃可爱长大的小学妹 提交于 2019-12-12 03:54:01

问题


Is it possible to send few objects into gson rendering view? I tried to use in controller:

respond trainings, [status: OK, view:"trainingsByClients", model: [myVariable: "test", anotherVariable: 123]]

and in gson view:

model {
    Iterable<Training> trainingList
    String myVariable
}

json {
    myVariable myVariable
    trainings tmpl.training(trainingList ?: [])
}

and it responds with:

{
  "myVariable": null,
  "trainings": [
    {
      "id": 3,
      "name": "test t",
      "numberOfAbsentClients": 0,
      "startDate": "2016-11-20T09:00:00+0000",
      "numberOfClients": 2,
      "section": {
    "id": 1,
    "name": "test sec"
      }
    },
    {
      "id": 10,
      "name": "test 2",
      "numberOfAbsentClients": 0,
      "startDate": "2016-11-09T11:00:00+0000",
      "numberOfClients": 2,
      "section": {
    "id": 2,
    "name": "sec 2"
      }
    }
  ]
}

回答1:


ok, I found solution:

    render(view: "trainingsByClients", model: [trainingList: trainings, myVariable: "asdg"])

so we should use render instead of respond. Respond is not adding properly additional model objects.



来源:https://stackoverflow.com/questions/41200464/rendering-few-models-in-gson

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!