1

我第一次使用 Grails 的 webflow 插件并且遇到了一些困难。总而言之,一旦在 Webflow 中,似乎没有信息从表单返回到控制器。我看过的所有示例都表明参数正常返回到控制器操作,然后您可以根据需要将对象放入流范围。不幸的是,图示的 println 都输出空值,并且参数的任何程序输出都表明预期的“testField1”和“testField2”不在参数对象中。请原谅不统一的文本框和提交方式 - 它们是实验的结果。控制器动作流程的简化版本:

def generateProductVariantsFlow = {

    start() {
        action {
            [productInstance:Product.get(params.id)] //the entry params contains the expected id
        }
        on ("success").to("selectAttributeValues")

    }

    selectAttributeValues() {

        on("next"){TestCommand tc -> //params does not have testField1 or testField2
            println "TEST COMMAND"
            println "${tc.testField1}"
            println "${tc.testField2}"
        }.to("selectProductVariants")
        on("cancel").to("finishBeforeStart")
    }

    selectProductVariants {
        on("cancel").to("finish")
        on("previous").to("selectAttributeValues")
        on("next").to("confirmNewVariants")

    }

    //other states here

    finish {
        redirect(action:"list")
    }

    finishBeforeStart { //somewhat misleading state name, but shouldn't be relevant
        redirect(controller:"product",action:"show")
    }

}

GSP 和 Command 同样简单 - selectAttributeValues GSP:

<%@ page import="com.castaway.rigging.Product" %>


            <g:form action="generateProductVariants">

                 <input type="integer" id="testField1" name="testField1" value="test1" />
                 <g:textField name="testField2" value="test2"/>

                <div class="buttons">
                    <span class="button"><g:actionSubmit class="cancel" name="cancel" value="Cancel"/></span>
                    <g:link action="generateProductVariants" event="next" >Next</g:link>
                </div>
            </g:form>
    </div>
</body>

命令:

class TestCommand implements Serializable {
        def testField1
        def testField2
    }
4

1 回答 1

2

为什么要使用链接而不是提交按钮来触发下一个事件?

单击该链接将执行不包含表单字段的 GET 请求。

您需要使用提交按钮来触发下一个事件。

干杯

于 2010-03-03T04:35:08.387 回答