摘要:1 /* 2 * application 3 * */ 4 window.Trot = Ember.Application.create(); 5 6 /* 7 * router 8 */ 9 Trot.Router.map(function() {10 this.resource('index', {11 path : '/'12 });13 this.resource('list', {14 path : '/list'15 });16 this.resource('content', {17 ...
阅读全文