如何使用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>
sample.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');
}
});
});
remote.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的返回值变得非常高,所以应该抑制或关闭它。
答案 0 :(得分:1)
如果将returnFormat设置为JSON,则无需在帖子中指定json。默认情况下,returnformat = WDDX是出于向后兼容的原因。
如果您想要易用,请查看<cfajaxproxy>
和各种cf-ajax UI组件标记。
答案 1 :(得分:1)
你看起来不错,哪里出错,错误是什么?如果没有明显的错误消息,我要做的第一件事是在远程方法中抛出一个日志语句,看看你是否正在调用它到服务器。如果这是真的并且它一直到最后,那么警告返回回调的对象(看起来你已经在做了)。
要回答您的具体问题,remote.fc?method=methodName
是正确的网址,如果您要发布数据,那么应该有标题等,所以您应该没问题。如果您收到错误或最终提醒的价值,请回发错误。