10

问题:

您如何使用新的 Ember.js 路由器以编程方式转换到新路由?

背景/上下文

使用旧的 Ember.js 路由器,您可以使用路由器的方法以编程方式在路由/状态之间转换send

//OLD Router Syntax
App = Ember.Application.create({
  Router: Ember.Router.extend({
    root: Ember.Route.extend({
      aRoute: Ember.Route.extend({
        route: '/',
        moveElsewhere: Ember.Route.transitionTo('bRoute')
      }),
      bRoute: Ember.Route.extend({
        route: '/someOtherLocation'
      })
    })
  })
});
App.initialize();

程序化过渡:

App.get('router').send('moveElsewhere');

给定新的 Ember.js 路由器(如下),我们如何完成同样的事情?

//NEW Router Syntax
App.Router.map(function(match) {
  match('/').to('aRoute');
  match('/someOtherLocation').to('bRoute');
});

解决方法(糟糕的解决方案?)

这不可能,对吧?

window.location = window.location.href + "#/someOtherLocation";

似乎不适用于新路由器的解决方案:

1)在实例上调用send方法App.router

> App.router.send("moveElseWhere")
TypeError: Cannot call method 'send' of undefined

2)显式声明Route并设置事件

App.ARoute = Ember.Route.extend({
  events: {
    moveElseWhere: function(context){
       this.transitionTo('bRoute');
    }
  }
);

App.UploadRoute.moveElseWhere()
TypeError: Object (subclass of Ember.Route) has no method 'moveElseWhere'

注意:在编写Ember.js 路由器文档时仍然指的是旧路由器,而Ember.js 路由器指南指的是新路由器

4

3 回答 3

9

假设这个路由器定义:

App.Router.map ->
  this.resource('old_route', {path : ""})
  this.resource('new_route', {path : ":model_id"})

当您将控制器作为上下文时,您可以移至new_routewith函数。old_route.transitionToRoute()

从控制器

this.get('target').transitionToRoute('new_route', model_instance)

this.get('target')- 从控制器返回当前路由

从一个视图

this.get('controller').get('target').transitionToRoute('activity_detail', activity)

笔记

函数 *transitionTo()在 1.0.0.RC3中已被弃用

于 2013-05-06T08:43:36.180 回答
4

您可以使用transitionTo新的路由器 API,但您必须以不同的方式访问路由器实例。

有关可能性,请参阅问题Access instance of new Ember Router的答案。

于 2013-01-07T08:36:08.757 回答
1

you trigger a link to a new route with the {{linkTo}} helper:

#your template

{{#linkTo allTodos activeClass="selected"}}All{{/linkTo}}

#your router

    App.Router.map(function (match) {
        match("/").to("todos", function (match) {
            match("/").to("allTodos"); // will fire this router
            match("/active").to("activeTodos");
            match("/completed").to("completedTodos");
        });
    });

Hope this helps :)

于 2013-01-07T02:21:42.160 回答