使用g:formRemote和Grails获取responseText

时间:2015-05-13 09:17:04

标签: ajax grails

我正在尝试使用formRemote

访问失败的ajax调用上的responseText
<g:remoteLink controller="answer" action="delete" id="${answer.id}"  update="questions" onFailure="handleError(response)" onComplete="assingActionTestElems()"></g:remoteLink>

但是没有定义响应,在FireBug中出现此错误

ReferenceError: response is not defined

这是我在控制器中的多个ajax处理错误之一

 render(status: 500, text: message(code: 'edition.answer.delete.pending'))

¿如何访问短信?

1 个答案:

答案 0 :(得分:1)

我找到了解决方案。这很简单但没有记录。抛出错误时会涉及3个字段,这是访问它们的方法:

$(document).on("click", ".buttonInTd", function() {
    /* give your buttons the 'buttonInTd' class and add your onclick code here */
});

您可以根据需要使用一个或全部!