transitionTo或link-to的參數(shù)不對應(yīng)于路由層次結(jié)構(gòu)中的更改,但僅獲取查詢參數(shù)值中的更改。在這種情況下,只有控制器屬性將被更新為新的查詢參數(shù)值以及在URL中。可選的queryParams在路由和控制器上配置哈希。將查詢參數(shù)的refreshModel配置屬性設(shè)置為true。
Ember.Route.extend({ queryParams: { queryParameterName: { refreshModel: true } } });
<!DOCTYPE html> <html> <head> <title>Emberjs Opting Into a Full Transition</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="application"> <h3>Enter values to add:</h3> <!-- form tag calls the 'addQuery' method --> <form {{action "addQuery" on="submit"}}> {{input value=queryParma}} <input type="submit" value="Send Tag"/> </form> </script> <script type="text/javascript"> App = Ember.Application.create(); App.ApplicationController = Ember.ArrayController.extend({ //specifyint 'query' as one of controller's query parameter queryParams: ['query'], //initialize the query value query: null, //defining a computed property queryParam queryParma: Ember.computed.oneWay('query'), actions: { addQuery: function() { //setting the query parameters and displaying it this.set('query', this.get('queryParma')); document.write(this.get('query')); } } }); App.ApplicationRoute = Ember.Route.extend({ queryParams: { query: { // Opt into full transition refreshModel: true } } }); </script> </body> </html>
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上面的代碼保存在routing_opt.html文件中
在瀏覽器中打開此HTML文件。
更多建議: