EmberJS 路由器粘性查詢參數(shù)值

2018-01-04 10:57 更新

描述

查詢參數(shù)為sticky,因此參數(shù)中的更改將保留。它保持更新的查詢參數(shù),而不是重置為默認值。

語句

Ember.Route.extend({
   resetController: function (params) {
      controller.set('queryParameterName', defaultValue);
   }
});

例子

<!DOCTYPE html>
<html>
   <head>
      <title>Emberjs Sticky Query Param Values</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">
         <h3>{{linkTo 'Click for  the About Page' 'about'}}</h3>
         {{outlet}}
      </script>

      <script type="text/x-handlebars" data-template-name="about">
         <h2>About Page</h2>
         {{linkTo 'Show' (query-params showThing=true)}}
         {{linkTo 'Hide' (query-params showThing=false)}}
         <br>
         {{#if showThing}}
            <b>Welcome to tutorialspoint..</b>
         {{/if}}
      </script>

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

         App.Router.map(function() {
            //about route
            this.route('about');
         });

         App.AboutController = Ember.Controller.extend({
            queryParams: ['showThing'],
            //showThing would be false, if only the route's model is changing
            showThing: false
         });
      </script>
   </body>
</html>

輸出

讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:

  • 將上面的代碼保存在routing_sticky_param.html文件中

  • 在瀏覽器中打開此HTML文件。

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號