我遵循余烬指南,并做了一些修改以显示帖子数据。我定义了一个发布路线,该路线将生成链接,并定义一个带有动态分段的发布路线以显示详细信息。但是,如果我单击链接“ / posts / 1”,它将导航到具有ID的发布路线。但是,除非刷新浏览器,否则我看不到帖子的详细信息。有谁知道为什么?谁能解释路由序列化钩子做什么?我不了解余烬指南的解释。

车把

<script type="text/x-handlebars">
    <h2>Welcome to Ember.js</h2>

    {{outlet}}
  </script>

  <script type="text/x-handlebars" id="posts">
    <ul>
    {{#each post in model}}
      <li>{{#link-to 'post' post}}{{post.name}}{{/link-to}}</li>
    {{/each}}
    </ul>
  </script>

  <script type="text/x-handlebars" id="post">
    <ul>
    {{#each post in model}}
      <h1>{{ post.name }} - {{ post.age }}</h1>
    {{/each}}
    </ul>
  </script>


灰烬代码

App = Ember.Application.create();

App.Router.map(function() {
  this.resource('posts');
  this.resource('post', { path: '/posts/:post_id' });
});

App.PostsRoute = Ember.Route.extend({
    model: function () {
        return [{
            id: 1,
            name: 'Andy',
            age: 18
        }, {
            id: 2,
            name: 'Tom',
            age: 14
        }, {
            id: 3,
            name: 'John',
            age: 10
        }];
    }
});

App.PostRoute = Ember.Route.extend({
    model: function (params) {
        var obj = [{
            id: 1,
            name: 'Andy',
            age: 18
        }, {
            id: 2,
            name: 'Tom',
            age: 14
        }, {
            id: 3,
            name: 'John',
            age: 10
        }];
        return obj.filter(function (item) {
            return item.id === parseInt(params.post_id);
        });
    },
    serialize: function(model) {
        // this will make the URL `/posts/12` WTH is this mean????
        return { post_id: model.id };
    }
});

最佳答案

我自己想出了答案。问题是Ember将自动生成PostRoute并返回一个OBJECT,因为默认的控制器将是ObjectController。但是,我仍然尝试将对象循环为车把模板中的数组。因此,它在第一时间不起作用。

08-19 19:33