1

这是场景:
我有布局:main.gsp
,并且有一个应用此布局的页面:homepage.gsp
我在 main.gsp 中有一个 div,如果有的话,我会在其中显示 Flash 消息。

现在,
当控制器发送任何 flash 消息时,它在 homepage.gsp 中可用,但是当在其上应用布局并显示页面时,flash 消息会丢失。

我希望 Flash 消息在布局代码中可用。同样,如果我不需要向 homepage.gsp 添加任何代码,那将是更可取的,因为有很多这样的页面,控制器可以返回 Flash 消息。

我该如何处理?
非常感谢任何帮助。

4

1 回答 1

0

This is the code I will used, I have tested and it work. main.gsp

    <body>
    <div id="grailsLogo" role="banner"><a href="http://grails.org"><img src="${resource(dir: 'images', file: 'grails_logo.png')}" alt="Grails"/></a></div>
    <div>
        <g:if test="${flash.message }">
        ${flash.message }
        </g:if>
    </div>
    <g:layoutBody/>
    <div class="footer" role="contentinfo"></div>
    <div id="spinner" class="spinner" style="display:none;"><g:message code="spinner.alt" default="Loading&hellip;"/></div>
    <r:layoutResources />
</body>

Controller:

    package com.mtsinai

class EmployeeController {

    def index() { 
        flash.message = 'Welcome world'
    }
}

index.gsp

    <%@ page contentType="text/html;charset=UTF-8" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<meta name="layout" content="main"/>
<title>Insert title here</title>
</head>
<body>
  <div class="body">

  </div>
</body>
</html>

Note that the flash message will be displayed on top of the body or the page that will be rendered

于 2014-01-07T14:33:52.947 回答