1

我想通过显示类似 404 not found 页面来处理不可用的路由。我怎样才能做到这一点?

例如,此索引中的http://jsbin.com/oZUHiXe/1/edit可用,因此(http://jsbin.com/oZUHiXe/1#index)不会引发任何错误。但是http://jsbin.com/oZUHiXe/1#index1在控制台中抛出错误,因为 index1 路由不可用。如何处理这种情况?

4

1 回答 1

3

您可以使用定义一个包罗万象的路线*并从那里进行重定向:

App.Router.map(function() {
  this.route('catchAll', { path: '*:' });
});

App.CatchAllRoute = Ember.Route.extend({ 
  redirect: function() {
    alert('route not existen');
    this.transitionTo('index'); 
  }
});

更新了 jsbin

希望能帮助到你。

于 2013-08-29T06:32:37.473 回答