要指定路由模型,需要在路由中定義模板名稱,該名稱與數(shù)據(jù)模板名稱相同,并實(shí)現(xiàn)其模型掛鉤。
Ember.Route.extend({ model: function() { return { //value-1 },{ //value-2 },{..},{ //value-n }; } });
在上面的代碼中,value-1到value-n變量用于存儲(chǔ)在模板中調(diào)用的值。
<!DOCTYPE html> <html> <head> <title>Emberjs Specifying a Route's Model</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://builds.emberjs.com/tags/v1.10.0-beta.3/ember-template-compiler.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.10.0/ember.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.10.0/ember.prod.js"></script> <script src="https://builds.emberjs.com/release/ember.debug.js"></script> </head> <body> <script type="text/x-handlebars"> {{outlet}} </script> <script type="text/x-handlebars" data-template-name="books"> <h2> {{title}} </h2> <ul> <li><p>Java</p></li> <li><p>DBMS</p></li> </ul> </script> <script type="text/javascript"> App = Ember.Application.create(); App.Router.map(function(){ //refers to the books template this.route('books'); }); App.BooksRoute = Ember.Route.extend({ //model is redering the title of the page model: function() { return { title: 'Books Page' } } }); App.IndexRoute = Ember.Route.extend({ redirect: function() { //redirect to books page this.transitionTo('books'); } }); </script> </body> </html>
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上面的代碼保存在routing_spfng_rout_model.html文件中
在瀏覽器中打開此HTML文件。
序號(hào) | 指定路由及描述 |
---|---|
1 | 異步加載模型 它在渲染模板之前從模型鉤子返回一個(gè)promise。 |
2 | 動(dòng)態(tài)模型 它定義具有動(dòng)態(tài)段的路由。 |
3 | 刷新模型 它刷新由模型表示的數(shù)據(jù)正在頻繁更新。 |
更多建議: