0
我有2個文件:test.cfc和test.cfm。當我點擊test.cfm
提交按鈕,我收到以下錯誤:將一個javascript表單對象傳遞給遠程CFC
"error: Object doesn't support this property of method".
我知道它有什麼做的passForm
函數內部形式的參考。但經過數小時的Google搜索後,我仍然無法解決錯誤。有什麼建議?
test.cfc
<cfcomponent>
<cffunction name="getForm" returntype="String" access="remote">
<cfargument name="theForm" type="struct">
</cffunction>
</cfcomponent>
test.cfm
<cfajaxproxy cfc="ajaxFunc.test" jsclassname="testCFC">
<script>
function passForm(theForm)
{
try
{
var e = new testCFC();
message = e.getForm(theForm);
ColdFusion.navigate('', 'myDiv');
}
}
</script>