是否可以使用 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' )}"
});
我整个早上都在搜索谷歌,我唯一能找到的是用于级联选择语句的 remoteFunctions。