jQuery.post() を使用してフォームを Coldfusion.cfc メソッドに投稿し、json データを返すにはどうすればよいですか? リモートで呼び出す cfc メソッドを指定するために、URL またはフォームの値をフォーマットする必要がある特定の方法はありますか? Coldfusion に json データを返すように指示するにはどうすればよいですか?
既存の jQuery/Coldfusion.cfc の質問を検索しましたが、明確にするために探しています。Coldfusion cfc との間の完全なプロセスを示す例が見つかりません。
HTML フォーム:
<!--- Assume: jquery, jquery-ui, sample.js is loaded --->
<p><a href="#" id="openDialog">Open Dialog</a></p>
<div id="myDialog" title="My Dialog" class="dialog">
<form id="myForm">
<label for="title">Title:</label><br />
<input type="text" name="title" id="title" value="" /><br />
<label for="address">Address:</label><br />
<input type="text" name="address" id="address" value="" /><br />
<input type="submit" name="save" value="save" />
</form>
</div>
サンプル.js:
jQuery(function ($) {
var saveUrl = "remote.cfc?method=save"; // Is this the right way??
// Bind link to open the dialog box
$('a#openDialog').click(function() {
$('#myDialog').dialog('open');
});
// Configure jQuery UI dialog box and callback methods
// Is this right??
$("#myForm").dialog({
buttons: {
'Save': function() {
$.post(saveUrl, $("#myForm").serialize(), function(result){
alert("Result: " + result);
}, "json");
$(this).dialog('close');
},
'Cancel': function() {
$(this).dialog('close');
}
});
});
リモート.cfc:
<cfcomponent>
<!--- If I set the returnFormat to JSON do I need to specify json in the post too? --->
<cffunction name="save" access="remote" returntype="string" returnFormat="JSON">
<cfargument name="title" type="string" required="yes">
<cfargument name="address" type="string" required="yes">
<cfset var result = structNew()>
<!--- Do some data manipulation or cfquery here, save to result struct --->
<cfreturn result>
</cffunction>
</cfcomponent>
*注: Coldfusion のデバッグを行うと、cfc の戻り値が実際にうまくいかないことがわかったので、これを抑制するかオフにする必要があります。