Webフローに対してAjax呼び出しを行おうとしていますが、すべてのビューステートでページのコンテンツ部分のみを更新したいと考えています。
function proposedInsured(){
("#myForm").submit(function() {
$.ajax({
type: "POST",
data: $("#myForm").serialize(),
url: $("#myForm").attr("action") + "&_eventId=nextpage&ajaxSource=print_message",
success: function(response) {
alert("success" + response);
$('#content').html(response);
},
error: function(response) {
alert("error" + response);
}
});
return false;
});
}
flow.xml
<view-state id="firstPage" view="firstPage" >
<transition on="nextpage" to="proposedInsured"/>
</view-state>
<view-state id="proposedInsured" model="policyBean" view="proposedInsured">
<binder>
<binding property="name" />
</binder>
<on-entry>
<evaluate expression="pocContent.getContent('proposedInsured',productId)" result="flowScope.content"/>
<render fragments="content"/>
</on-entry>
<transition on="nextpage" to="address" />
</view-state>
<subflow-state id="address" subflow="address">
<transition on="saveAddress" to="nextpage">
<evaluate expression="policyBean.setAddressDetail(currentEvent.attributes.addressDetail)"/>
</transition>
</subflow-state>`
最初のページのNextPage送信ボタンのクリックイベントで、webFlowを呼び出すajaxスクリプトを起動しています。
firstPage(ビューパーツにThymeleaf2.0.12を使用)
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" xmlns:tiles="http://www.thymeleaf.org">
<body>
<div id="content" tiles:fragment="content">
<form id="myForm" method="post" th:action="${flowExecutionUrl}">
<input id="print_message" type="button" value="NextPage" name="_eventId_nextPage" onclick="proposedInsured();"/>
</form>
</div>
</body>
</html>
提案されたInsured.html
<html xmlns:th="http://www.thymeleaf.org" xmlns:tiles="http://www.thymeleaf.org">
<body>
<div id="content" tiles:fragment="content">
<form id="myForm" name="myForm" method="POST">
...
</form>
</div>
</body>
</html>
template.html
<div id="page-container">
<div id="header" th:fragment="header">
...
</div>
<div id="content" th:fragment="content">
....
</div>
</div>
問題:Ajax呼び出しに応答して、ページ全体(ヘッダーとコンテンツ)の両方を取得します。私の理解による
<render fragment="content">
と、ページ全体からコンテンツフラグメントを抽出し、それをクライアントに渡す必要があります。それが何を意味するのか実際にはわかりません。これをどのように処理する必要がありますか?
私が観察した2番目のことは、フローに対して2つの呼び出しを行うことです。1つは失敗するPostであり、もう1つは応答を返すGetです。なぜこれが起こっているのか誰か説明できますか?