test.cfcとtest.cfmの2つのファイルがあります。の送信ボタンをクリックするとtest.cfm
、次のエラーが発生します。
「エラー:オブジェクトはメソッドのこのプロパティをサポートしていません」。
関数内のフォーム参照と関係があることはわかっていpassForm
ます。しかし、何時間もグーグルした後でも、エラーを解決できません。何かアドバイス?
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>