Ember第一次完成加载时如何运行功能 [英] How to run a function when Ember finished loading for the first time

查看:101
本文介绍了Ember第一次完成加载时如何运行功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在编写一个在节点Webkit应用程序中运行的简单ember应用程序,现在我想运行:

Hi i'm writing a simple ember app that I run within a node-webkit app, now I would like to run:

require("nw.gui").Window.get().show();

在Ember完成加载并呈现索引视图之后,但仅一次,如果您只是导航到/,则不会.

right after Ember finished loading and had rendered the index view, but just once, not if you've just navigated to /.

我已经尝试过:

App.IndexRoute = Ember.Route.extend({
  setupController: function(controller) {
    require("nw.gui").Window.get().show();
  }
});

但这在每次/

谢谢!

推荐答案

Ember.Application具有

Ember.Application has a ready event. That could match your needs.

您可以像这样使用它:

window.App = Ember.Application.create({
    ready: function () {
        alert('Application ready!');
    }
});

这篇关于Ember第一次完成加载时如何运行功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆