我在 grails 控制器上有以下导航设置,List_X 和 List_Y 是否可以执行不同的操作,然后映射到同一个 gsp 文件?
subItems: [
[ action: 'list_X',title: 'Something', order:1 ],
[ action: 'error_X',title: 'Something',order:2 ],
[ action: 'list_Y', title: 'Something', order:3 ],
[ action: 'error_Y',title: 'Something', order:4 ],
]