gpt4 book ai didi

ember.js - 应用程序就绪后在应用程序 Controller 上设置 Controller 属性

转载 作者:行者123 更新时间:2023-12-04 18:11:01 24 4
gpt4 key购买 nike

我正在尝试将我的主应用程序 View 标题设置为当前公司名称。我需要通过ajax“/company.json”获取。

在我的 ApplicationController 中,我有一个“companyName”属性和一个名为“loadCompanyName”的方法,它将获取 companyName。问题是,我如何从应用程序就绪函数中引用这个实例化 Controller 。

最佳答案

对于新的,您应该更喜欢在 App.ready() 函数中执行此操作。

通常,我会在 ApplicationRoute 的 setupController() 函数中执行此操作:

App.ApplicationRoute = Ember.Route.extend({
setupController: function(controller, model){
controller.loadCompanyName();
this._super(controller, model);
}
});

关于ember.js - 应用程序就绪后在应用程序 Controller 上设置 Controller 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14339116/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com