Grails remoteFunction を使用して、子ドメイン オブジェクトで create メソッドを呼び出すことは可能ですか?
gsp ページの remoteFunction 呼び出しから子コントローラーの create 関数を呼び出そうとしていますが、エラーが発生し続けます
Message: Provided id of the wrong type for class XXX.YYY. Expected: class java.lang.Long, got class java.lang.String
remoteFunction コードは次のようになります。
$.ajax({
type: 'POST',
url: "${remoteFunction(controller:'childController' action:'create' )}"
});
午前中ずっと Google を検索しましたが、select ステートメントをカスケードするための remoteFunctions しか見つかりませんでした。