对于视图的“自动”更新,我使用了 Grails 事件推送插件,我建议你看看它。
http://grails.org/plugin/events-push
将事件发送到浏览器并在客户端监听它们并使用 propper 信息更新 AngularJS 范围真的很容易。
例子
一个 angularJS 文件
window.grailsEvents = new grails.Events('http://myAppUrl.com', {enableXDR:true,readResponsesHeaders:false});
/**
* Module for listening to grails events
*/
angular.module('grailsEvents', []).factory('grailsEvents', function() {
return window.grailsEvents
});
window.myModule = angular.module('myModule',['grailsEvents'])
.run(function(){
grailsEvents.on('myEvent',function(data){
//Every time an event occurs, this will be executed
console.log(data);
});
});
MyEvents.groovy(在 grails-app/conf 中)
events = {
'myEvent' browser:true
}
TestController.groovy(发送事件的控制器示例)
class TestController{
def index(){
event(topic:'myEvent',data:MyDomain.list())
}
}