0

Spring Webflow バージョン 2.2.1.RELEASE を使用しています。以下は私のアクション状態です。URL を //hostAddress:8080/app/order と入力すると、以下のアクション状態を実行してフローが開始されます。私の質問は、このアクション状態にパラメーターを渡す方法はありますか? または、1 つのパラメーターを渡すことで、いくつかのボタンをクリックしたときに、以下のアクション状態を呼び出すことができます。フローはアクション状態の下から始まるためです。

<action-state id="placeInitialize">
    <evaluate expression="orderActions.setupPlacePage"></evaluate>
    <transition on="error" to="home" />
    <transition on="success" to="estimate" />
</action-state>
4

1 に答える 1

1

フロー内で次のようなことができます (これがエントリ ポイントになります)。

<input name="param1" type="string" />

<decision-state id="isParamSet">
    <if test="param1 == null" then="estimate" else="error" />
</decision-state>


そして、フローを呼び出すだけです//hostAddress:8080/app/order?param1=something

于 2013-10-09T21:06:36.797 に答える