短:
由于您要求使用ember 应用程序,因此我花了一些时间来提供可接受的答案。这是工作jsbin。
长:
我这里添加了一些代码,完整代码请看提供的jsbin。
索引.html
<script type="text/x-handlebars">
Status:
{{#if App.isOffline}}
<span class="offline">Offline</span>
{{else}}
<span class="online">Online</span>
{{/if}}
<hr>
{{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="index">
<h2>Hello World</h2>
</script>
注意:我使用了 js lib heyoffline.js,因为它是 IMO 中最好的之一。我还覆盖了显示模态窗口的函数(lib show 在脱机时默认显示一个模态窗口,但由于我们将通过我们的 ember 应用程序控制它,所以不需要它),只需删除原型即可恢复它覆盖。
应用程序.js
// overrides to not show the default modal window, to get it back just remove this overrides
Heyoffline.prototype.showMessage = function() {
//this.createElements();
if (this.options.onOnline) {
return this.options.onOnline.call(this);
}
};
Heyoffline.prototype.hideMessage = function(event) {
if (event) {
event.preventDefault();
}
//this.destroyElements();
if (this.options.onOffline) {
return this.options.onOffline.call(this);
}
};
//ember app
var App = Ember.Application.create({
isOffline: false,
service: null,
ready: function(){
this.set('service', App.HeyOffline.create());
}
});
// Heyoffline wrapper
App.HeyOffline = Ember.Object.extend({
service: null,
init: function(){
// heyoffline instantiation
this.set('service', new Heyoffline());
// hook into the two important events
this.set('service.options.onOnline', this.offline);
this.set('service.options.onOffline', this.online);
},
online: function(){
App.set('isOffline', false);
console.log("online");
},
offline: function(){
App.set('isOffline', true);
console.log("offline");
}
});
App.ApplicationRoute = Ember.Route.extend({});
要测试它是否有效,加载jsbin并下线,查看模板中的状态如何变化,再次上线以查看它的变化。
完成此设置后,您应该以 ember 方式获得浏览器的在线/离线状态,享受 :)
希望能帮助到你