3

別のビュー内からビューをレンダリングすると、「Uncaught ReferenceError: model is not defined」という JS エラーが発生します。

私はリストビューを持っています:

define([
    'jquery', 
    'backbone',
    'underscore',
    'views/action',
    'collections/actionlist',
    'text!templates/actionlist.html'],

function($, Backbone, _, actionView, actionList, template){

var someactions = [
    { the_action: "Contact 1", due: "1, a street, a town, a city, AB12 3CD", list: "0123456789" },
    { the_action: "Contact 2", due: "1, a street, a town, a city, AB12 3CD", list: "0123456789" },
    { the_action: "Contact 3", due: "1, a street, a town, a city, AB12 3CD", list: "0123456789" }
];

var actionlistView = Backbone.View.extend({

    el: '#main',
    template: _.template(template),

    initialize: function () {
        this.collection = new actionList(someactions);            
        this.collection.on("add", this.renderAction, this);
    },

    events: {
        "click #add": "addAction"
    },

    render: function () {
        var $el = $('#main')

        $el.html(this.template);

        // Get Actions
        _.each(this.collection.models, function (action) {
            this.renderAction(action);
        }, this);

    },

    renderAction: function (action) {
        var theAction = new actionView({ model: action });
        $('#actionlist').append(theAction.render().el);
    },

    addAction: function(e){
        e.preventDefault();
        var formData = {};

        $('#addAction').children("input").each(function(i, el){
            if ($(el).val() !== "") {
                formData[el.id] = $(el).val();
            }
        });

        this.collection.create(formData);
    }
});

return actionlistView;
});

これが renderAction 関数で呼び出す actionView は次のとおりです。

define([
    'jquery', 
    'backbone',
    'underscore',
    'models/action',
    'text!templates/action.html'], 

function($, Backbone, _, actionModel, template){

var actionView = Backbone.View.extend({
    tagname: 'li',
    template: _.template(template),

    render: function () {
        this.$el.html(this.template(this.model)); // ERROR OCCURS ON THIS LINE
        return this;
    }
});

return actionView;
});

「this.$el.html(this.template(this.model));」という行でエラーが発生します。最初の actionView をレンダリングしようとしたとき。

私は困惑しています!私は何が欠けていますか?

要求された ActionView テンプレート:

    <b class="name"><%=model.get("the_action")%></b> - <%=model.get("due")%> - 
    <em>from <%=model.get("list")%></em>
4

1 に答える 1

3

テンプレートで model.toJSON() を呼び出し、テンプレートで json を参照することをお勧めします。

これから:

this.$el.html(this.template(this.model));

これに:

this.$el.html(this.template(this.model.toJSON())); 

次に、テンプレートで「due」と「list」を直接参照します。

<b class="name"><%=the_action%></b> - <%=due%> - 
    <em>from <%=list%></em>
于 2013-03-29T19:45:40.493 に答える