使用 json 视图的控制器将调用与渲染域时调用的控制器方法对应的 json 视图。
但是,除了域之外,我还想将控制器参数传递给 json 视图,以自定义域的呈现方式。
使用此类功能的典型示例是以简短或详细的方式显示在索引端点中呈现的域。
如何将控制器参数传递给 json 视图?
How can I make pass the controller params to the json view?
You don't have to do anything. You can reference the params
variable in a JSON view. We provide direct access that way.
For more info, see the "Accessing The Request" section at http://views.grails.org/latest/.