gpt4 book ai didi

ember.js - 在初始化时将 Controller 注入(inject) Controller 不再起作用(金丝雀)

转载 作者:行者123 更新时间:2023-12-05 00:26:10 28 4
gpt4 key购买 nike

我刚刚升级到 ember 的最新金丝雀版本,并注意到将 currentUser Controller 注入(inject)所有 Controller 的初始化程序不再起作用。

这是代码。

Ember.Application.initializer({
name: "fetchUsers",
after: "store",

initialize: function(container, application) {

var store, controller;

application.deferReadiness();

store = container.lookup('store:main');
controller = container.lookup('controller:currentUser');

return store.find('user').then( function(users) {
var currentUser;

currentUser = users.findBy('isCurrent', true);

controller.set('content', currentUser);

application.inject('controller', 'currentUser', 'controller:currentUser');

application.advanceReadiness();
});
}
});

这在发布和测试分支中工作正常,但在金丝雀中我收到以下错误。
Error: Cannot inject a `controller:current-user` on other controller(s). Register the `controller:current-user` as a different type and perform the typeInjection.

我应该如何解决这个问题?我希望 currentUser 成为 ObjectController,这可能吗?

最佳答案

好的,这是我当前的初始化程序。我真的只是将 currentUser ObjectController 更改为 ObjectProxy。我现在唯一挂断的是存储 CurrentUserObjectProxy 文件的位置。我倾向于模型目录。

Ember.Application.initializer({
name: "fetchUsers",
after: "store",

initialize: function(container, application) {

var store, user, proxy;

application.deferReadiness();

store = container.lookup('store:main');

proxy = App.CurrentUserObjectProxy.extend();

container.register('user:current', proxy, {singleton: true});

proxy = container.lookup('user:current');

store.find('user').then( function(users) {

user = users.findBy('isCurrent', true);

proxy.set('content', user);

application.inject('controller', 'currentUser', 'user:current');

application.advanceReadiness();
});
}
});

我希望这可以帮助别人。

关于ember.js - 在初始化时将 Controller 注入(inject) Controller 不再起作用(金丝雀),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22723199/

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