如何使用 jQuery.post() 将表单发布到 Coldfusion.cfc 方法并返回 json 数据?是否有某种方式我需要格式化 url 或表单值以指定远程调用的 cfc 方法?如何告诉 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 返回值,因此应该禁止或关闭它。