gpt4 book ai didi

ember.js - Ember.js获取当前路线

转载 作者:行者123 更新时间:2023-12-04 13:23:32 26 4
gpt4 key购买 nike

我要切换到新的 Ember 路由器,但有一个非常简单的问题-如何确定我目前所处的路线?在您可以执行类似App.router.get('currentState')的操作之前,但这似乎不再起作用,因为路由器不再从StateManager继承

最佳答案

看看这个question

简介:currentState现在存储在ApplicationController的currentPath属性中。可接受的解决方案是观察者将此属性写入全局属性:

App = Em.Application.create({
currentPath: ''
});
ApplicationController : Ember.Controller.extend({
updateCurrentPath: function() {
App.set('currentPath', this.get('currentPath'));
}.observes('currentPath')
});

关于ember.js - Ember.js获取当前路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15921629/

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