在我看来我有
<g:render template="/common/notifications" model="[userNotifications:userNotifications]" />
在 javascript 中,我有一个 ajax 调用来返回Notification
s的 JSON 对象
被调用的控制器方法如下:
def getNotifications()
{
def userNotifications = Notification.findAllByUser(UserUtils.getCurrentUser())
render userNotifications as JSON
}
但我不知道如何获取响应数据以向模板提供模型
任何帮助深表感谢