如何使用Ember在没有URL重定向的情况下处理错误

时间:2015-05-27 15:41:33

标签: javascript ember.js error-handling

我要做的是在不更改用户的网址路径的情况下呈现自定义错误,因此使用this.transitionTo不是一种选择。

到目前为止,以下方法正在起作用:

v1.10.1 - http://emberjs.jsbin.com/tezazakiye/1/edit

但是从v1.11.0开始,没有办法让它起作用

v.1.11.3 - http://emberjs.jsbin.com/rilenafaqe/1/edit

似乎是正常的'根据{{​​3}}或https://github.com/emberjs/ember.js/issues/10884,获得的错误是:

Error while processing route: stories.index Cannot read property 'push' of undefined TypeError: Cannot read property 'push' of undefined

如果我很好理解,这是正常的,现在无法从错误动作中调用render(),但是那么这样做的好方法是什么?

(我也发布在github:https://github.com/emberjs/ember.js/issues/11136

非常感谢。

1 个答案:

答案 0 :(得分:0)

不确定它是否符合您的条件,但您可以将操作冒出来,以便applicationRoute处理您的错误操作,如下所示:http://emberjs.jsbin.com/pehanoveko/1/