3

我对 Grails 网络流中的重定向有疑问。我处于允许用户输入问题答案的视图状态。在 2 次错误尝试中,我应该能够重新引导用户从不同的控制器查看页面。我的意思是

challengeQuestionOne{
            onRender() {
                //Display question
            }
            on('next') {BuildQuestion command ->
                bindData(flow.recovery,command)
                [return the model to flow]
                if(command.hasErrors()) {
                    flow.command = command
                    return error()
                }
                if(check for status. If doesnot pass){
                    flash.message=message(code:'loginForm.account.locked', default: 'Please Contact Admin.')
                    redirect(controller : "login",action: "login")//how to redirect from here to diff controller
                }                    
                if (//compare answer entered) {

                }
                else{
                   //set status not active
                }

            }.to("challengeQuestionTwo")
            on(Exception).to("error")
            on('cancel').to('finish')                
        }

我试图从 onRender 重定向。它正在重定向到页面。但是如何在重定向页面上显示错误消息。如何将错误消息从一个控制器转发到另一个?

4

2 回答 2

3

Ivo Houbrechts 写了一篇关于 grails webflow 的优秀教程:

Webflow 定义了自己的 flash 范围。尽管它与标准 grails flash 范围具有相同的语义(主要目的是只存储对象直到下一个请求之后),但它是不同的范围。这意味着存储在 webflow 的 flash 范围内的对象在标准 grails 操作中不可见。

import org.springframework.web.context.request.RequestContextHolder
....
RequestContextHolder.currentRequestAttributes().flashScope.message = "YourMessage"

你可以在这里阅读更多:

http://livesnippets.cloudfoundry.com/docs/guide/

于 2012-08-02T07:12:46.390 回答
0

在这种情况下,Flash 示波器将无法按预期工作。尝试使用另一种方法来显示错误。例如,您可以通过重定向传递参数。或者您可以抛出一些异常并在呈现的页面上检查它,如下所示:

<g:if test="${flowExecutionException}">
    <div class="error"><g:message code="loginForm.account.locked"/></div>
</g:if>
于 2012-05-13T15:04:01.623 回答