23

この基本的な Ember.js チュートリアルに従おうとしていますが、「投稿」モデルにはうまくいきません。デモンストレーションに従ってすべてを設定しましたが、次のエラーが発生します。

Uncaught More context objects were passed than there are dynamic segments for the route: post

Ember.js アプリを使用するのはこれが初めてなので、正直なところ、これが何を意味するのかわかりません。どんな助けでも(文字通り何でも)大歓迎です。

これが私のApp.jsです

App = Ember.Application.create();

App.Store = DS.Store.extend({
    adapter: 'DS.FixtureAdapter'
});

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

App.PostsRoute = Ember.Route.extend({
    model: function () {
        return App.Post.find();
    }
})

App.Post = DS.Model.extend({
    title: DS.attr('string'),
    author: DS.attr('string'),
    intro: DS.attr('string'),
    extended: DS.attr('string'),
    publishedAt: DS.attr('date')
});

App.Post.FIXTURES = [{
        id: 1,
        title: "Rails in Omakase",
        author: "d2h",
        publishedAt: new Date('12-27-2012'),
        intro: "Blah blah blah blah",
        extended: "I have no clue what extended means"
    }, {
        id: 2,
        title: "Second post",
        author: "second author",
        publishedAt: new Date('1-27-2012'),
        intro: "second intro",
        extended: "Second extended"
    }];

そして、ここに投稿のhtmlがあります。

<script type="text/x-handlebars" id="posts">
    <div class="container-fluid">
        <div class="row-fluid">
            <div class="span3">
                <table class='table'>
                <thead>
                    <tr><th>Recent Posts</th></tr>
                </thead>
                {{#each model}}
                <tr><td>
                    {{#linkTo 'post' this}}{{title}} <small class='muted'>by {{author}}</small>{{/linkTo}}
                </td></tr>
                {{/each}}
                </table>
            </div>
            <div class="span9">
                {{outlet}}
            </div>
        </div>
    </div>
</script>
<script type="text/x-handlebars" id="post">
    <h1>{{title}}</h1>
    <h2> by {{author}} <small class="muted">{{publishedAt}}</small></h2>

    <hr>

    <div class="intro">
        {{intro}}
    </div>

    <div class="below-the-fold">
        {{extended}}
    </div>
</script>
4

2 に答える 2

2

受け入れられた答えは機能します。

ただし、op が例のどこにあるかを考えると、より正しい修正は、次のものをそのままにしておくことです。

this.resource('posts');

これをその下に追加します。

this.resource('post', { path: '/post/:post_id'});
于 2014-07-27T12:49:42.997 に答える