Ajax Spring Webflow

前端之家收集整理的这篇文章主要介绍了Ajax Spring Webflow前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
首先,我使用 spring webflow和一些spring javascript来简化ajax调用.

截至目前,我正在让ajax调用webflow来显示相应的片段.

所以我试图使用Spring.AjaxEventDecoration来满足我的应用程序的ajax需求.但是,我在使用这种方法和Webflow时遇到了一些问题,而且据我所知,可用的示例很少.

另外,我没有使用表格或选择框.我想我会提到这个,因为我发现的每个例子都使用了带有onlick事件的表单/表单提交或带有onchange事件的选择框.

主要问题:如果我的webflow中有一个方法来自我的ajax,我是否可以将参数从ajax传递到webflow?

码:

<transition on="disassociateProperty" >
     <evaluate expression="dService.disassociateProperty(requestParameters.currentPId,currentD)"  result="flowScope.currentD" />
<render fragments="PList" />
</transition>

所以,当我在firebug中查看ajax调用时,它具有我传入的参数(currentPId)和正确的eventId.

我在disassociateProperty方法的第一行放了一个调试点,它告诉我currentPId为null.

所以我假设webflow中的requestParameters.currentPId没有从ajax调用提取currentPId.

这是预期的吗?任何人都可以解释并举例说明吗?

我将不胜感激任何帮助.

亚当

如果你认为问题来自ajax调用,那么如果你在这里写ajax调用会很有帮助,所以我们可以检查调用是否正确完成.

在执行ajax调用时,您可以尝试传递data参数中的序列化表单.另外,不要忘记在URL中添加ajaxSource参数.希望这有帮助.

HTML示例:

<form id="formId" method="post" action="${flowExecutionUrl}&_eventId=disassociateProperty">
    <input type="text" id="currentPId" />
</form>

jQuery示例:

$.ajax({
        type: "POST",data: $("#formId").serialize(),url: $("#formId").attr("action") + "&ajaxSource=true",...
});
原文链接:https://www.f2er.com/ajax/159991.html

猜你在找的Ajax相关文章