私の見解では、私は持っています
<g:render template="/common/notifications" model="[userNotifications:userNotifications]" />
Notification
javascriptでは、 sのJSONオブジェクトを返すためのajax呼び出しがあります
呼び出されるコントローラ メソッドは次のとおりです。
def getNotifications()
{
def userNotifications = Notification.findAllByUser(UserUtils.getCurrentUser())
render userNotifications as JSON
}
しかし、応答データを取得してテンプレートにモデルを提供する方法の手がかりがありません
どんな助けでも大歓迎です