6

私はbackbone.jsを学んでおり、ほとんど初心者です。アンダースコアテンプレート メソッドを使用してテンプレートを追加したいのですが、うまくいきません。このエラーを検索しましたが、自分で修正できませんでした。テンプレートが表示されていない場合、どうすれば先に進むことができますか? 助けが必要です。

コードは次のとおりです (このコードは addyosmani の本 backbone-fundamentals からのものです):

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>testing</title>
</head>
<body>
<script src="scripts/jquery.js"></script>
<script src="scripts/underscore.js"></script>
<script src="scripts/backbone.js"></script>
<script>


    var TodoView = Backbone.View.extend({
    tagName: 'li',
    // Cache the template function for a single item.
    todoTpl: _.template( $('#item-template').html() ),

    events: {
    'dblclick label': 'edit',
    'keypress .edit': 'updateOnEnter',
    'blur .edit': 'close'
    },

    // Re-render the titles of the todo item.

    render: function() {
    this.$el.html( this.todoTpl( this.model.toJSON() ) );
    this.input = this.$('.edit');
    return this;
    },

    edit: function() {
    // executed when todo label is double clicked
    },

    close: function() {
    // executed when todo loses focus
    },

    updateOnEnter: function( e ) {
    // executed on each keypress when in todo edit mode,
    // but we'll wait for enter to get in action
    }

    });


    var todoView = new TodoView();
    // logs reference to a DOM element that cooresponds to the view instance
    console.log(todoView.el);
4

2 に答える 2

8

テンプレートがスクリプトの後に定義されている場合、それは機能しません。

エントリポイントをラップします

$(function(){
   var todoView = new TodoView();
});

したがって、この種のエラーは発生しません。

于 2012-12-19T11:47:06.283 に答える
4

同じエラーが発生しました。定義されたIDを持つテンプレートがページに存在することを確認してください。私の場合、テンプレートに間違ったidを使用しました。これがエラー"TypeError: n is undefined"の理由でした。

于 2013-08-21T10:18:46.937 に答える