Difference between view and template in Grails

你说的曾经没有我的故事 提交于 2019-12-07 05:11:06

问题


In a Grails app, I am trying to figure out when to use a view and when to use a template for a gsp. Are there any obvious reasons? Or does it just come down to reuse?


回答1:


Basically Template is a (reusable) part of a View. Useful for splitting View into logical parts and/or for reusing same code from different views.

So, if you're rendering a whole page - use View. If you need just a small part - use Template.

See docs for Views and Templates - http://grails.org/doc/latest/guide/theWebLayer.html#viewsAndTemplates



来源:https://stackoverflow.com/questions/18272250/difference-between-view-and-template-in-grails

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