什么是模板以及如何以及在gsp中创建它的位置?

时间:2015-08-20 12:18:05

标签: grails

以下是什么template?我在哪里创建它以及如何使用它?

def RenderDemo = {

    //Render text to response
    render "hellooooo"

    //Render text for specified content type/ encoding
    render (text: "<strong><h1><marquee>Akshay</marquee></h1></strong>" , contentType: "text/html")

    //Render a Template to the response for the specified model...
    def theShining = [title: "The Shining" , auther : "king"]

    render(template: "RenderDemo" , model: [book : theShining])

}

1 个答案:

答案 0 :(得分:2)

模板是部分GSP或GSP的片段。它打算重复使用。就像任何其他GSP一样,它属于grails-app/views/目录结构。所有模板都有一个以下划线_开头的文件名。因此,在您的示例中,模板将为:grails-app/views/render/_renderDemo.gsp

我强烈建议您阅读official documentation on views and templates,它解释了为什么要使用模板以及为您提供有关模板的更多详细信息。