0

作成したエントリが表示されない理由を知りたいです。私はマリオネットを使用する良い簡単なチュートリアルを見つけるのに苦労しているので、ここにある怒っている猫のチュートリアル ( http://davidsulc.com/blog/2012/04/15/a-simple-backbone-marionette-tutorial/ ) を試してみました。何が起こっているのかをよりよく理解できるように、似ているがさらに単純なものを作成します。どんな助けでも大歓迎です。

これがJavascriptです。私はMarionette.jsを使用しています

    MyApp = new Backbone.Marionette.Application();

    MyApp.addRegions({
    listBox : "#listBox"
    });

    Entry = Backbone.Model.extend({
    defaults: {
        entry : "Blank"
    },
    });

    EntryList = Backbone.Collection.extend({

    model: Entry
    });

    EntryView = Backbone.Marionette.ItemView.extend({
    template: "entry-template",
    tagName: 'tr',
    className: 'entry'
    });

    EntriesView = Backbone.Marionette.CompositeView.extend({
    tagName: "table",
    template: "#entries-template",
    itemView: EntryView,

    appendHtml: function(collectionView, itemView){
        collectionView.$("tbody").append(itemView.el);      
    }
    });

    MyApp.addInitializer(function(options){
        var entriesView = new EntriesView({
            collection: options.ents
        });

        MyApp.listBox.show(entriesView);
    });

    $(document).ready(function(){
        var ents = new EntryList([
            new Entry({ entry: 'abc' }),
            new Entry({ entry: 'def' }),
      new Entry({ entry: 'ghi' })
  ]);
   MyApp.start({entry: ents});
});

html は次のとおりです。

<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <title>Simple Demo</title>
        <link rel="stylesheet" href="assets/screen.css">
    </head>
    <body>
        <div id = "listBox">
        </div>

        <script type="text/template" id="entries-template">
            <thead>
                <tr class='header'>
                    <th>Entry</th>
                </tr>
            </thead>
            <tbody>
            </tbody>
        </script>
      <script type="text/template" id="entry-template">
            <td><%- entry %></td>
            <td><button class="delete">Delete</button></td>
      </script>
        <script src="js/lib/jquery.js"></script>
        <script src="js/lib/underscore.js"></script>
        <script src="js/lib/backbone.js"></script>
        <script src="js/lib/backbone.marionette.js"></script>
        <script src="js/demo.js"></script>
    </body>
</html>
4

1 に答える 1