EmberJS 路由器错误子状态

2018-01-04 13:17 更新

描述

加载子站具有类似的方法来处理在转换期间发生的错误。默认的加载事件处理程序是一个实现,错误处理程序发现一个错误子状态进入。当错误捕获时,路由器立即转换子状态以处理错误。

错误事件

错误事件可以用于通过重定向到指定的页面来处理和显示错误消息。您还可以使用具有错误处理的动态路由。

语句

Router.map(function() {
   this.route('temp1', function() {
      this.route('temp2');
   });
});

例子

<!DOCTYPE html>
<html>
   <head>
      <title>Emberjs error Substates</title>
      <!-- CDN's -->
      <script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.1/handlebars.min.js"></script>
      <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.10.0/ember.min.js"></script>
      <script src="https://builds.emberjs.com/tags/v1.10.0-beta.3/ember-template-compiler.js"></script>
      <script src="https://builds.emberjs.com/release/ember.debug.js"></script>
      <script src="https://builds.emberjs.com/beta/ember-data.js"></script>
   </head>
   <body>
      <script type="text/x-handlebars" data-template-name="index">
         <h1>{{data}}</h1>
      </script>

      <script type="text/x-handlebars" data-template-name="loading">
         <!-- this is the message for the laoding event -->
         <h1>Loading Contents Please Wait.......</h1>
      </script>

      <script type="text/x-handlebars" data-template-name="error">
         <!-- this is the message for the error event -->
         <h2><font color="red">Failed To Load The Contents Please Try Again Later...</font></h2>
      </script>

      <script type="text/javascript">
         App = Ember.Application.create();

         App.IndexRoute = Ember.Route.extend({
            model: function(){
               return new Promise(function(resolve, reject){
                  //setting up the time out for data display in mili sec
                  window.setTimeout(function(){
                     data = "Manu";
                     //Failure of promise data
                     reject(data);
                  }, 2000);
               });
            },

            actions: {
               error: function(transition, originalRoute){
                  //Return true to bubble this event to 'loading' or 'indexRoute'
                  return true;
               }
            }
         });
      </script>
   </body>
</html>

输出

让我们执行以下步骤,看看上面的代码如何工作:

  • 将上面的代码保存在routing_err_subst.html文件中

  • 在浏览器中打开此HTML文件。

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号