4

我正在开发一个日历风格的主干应用程序,但对它还算陌生。我已经为此工作了 12 多个小时,但仍然无法让我的模板填充 JSON 数据。

这是我今天写的一些代码:

模型

var CalendarDay = Backbone.Model.extend({
    defaults: function () {
        return {
            title: "No days for this event",
            done: false
        };
    },
    initialize: function () {}
});

var calendarItem = new CalendarDay({
    urlRoot: URL
});

收藏

var Calendar = Backbone.Collection.extend({
    model: CalendarDay,
    url: URL
});

看法

var CalendarView = Backbone.View.extend({
    template: _.template($('#days').html()),
    initialize: function () {
        this.collection = new Calendar();
        this.collection.fetch();
        this.collection.bind("reset", this.render, this);
        this.loadTimes();
    },
    render: function () {
        var JSON = this.collection.toJSON();
        this.$el.html(this.template(JSON));
        console.log(JSON);
    },
    listDays: function () {

    }

});

var calendarView = new CalendarView({
    model: calendarItem
});

这是我从服务器获得的 JSON:

0: Object
activity_logs: Array[0]
attendee_code: "BBNVKBGT"
attendee_fee: "0"
cego_fee: "0"
certificate_fee: "0"
created_at: "2013-02-13 11:29:03"
days: Array[1]
description: "A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine."
disciplines: Array[3]
done: false
fee_transaction_id: "0"
id: "102"
marketing_materials: Array[0]
messages: Array[0]
name: "My very first event"
organization_id: "1"
start_at: "2013-02-28 00:00:00"
state_id: "38"
states: Array[2]
title: "No days for this event"
updated_at: "2013-02-13 11:29:04"
venue_id: "55"

(来自console.log)附加的是我的控制台日志与JSON的更好的视图。 JSON截图

更新:这是我的字符串化 JSON:

    [{"title":"No days for this event","done":false,"id":"102","organization_id":"1","state_id":"38","venue_id":"55","name":"My very first event","description":"A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine.","start_at":"2013-02-28 00:00:00","attendee_code":"BBNVKBGT","cego_fee":"0","fee_transaction_id":"0","attendee_fee":"0","certificate_fee":"0","created_at":"2013-02-13 11:29:03","updated_at":"2013-02-13 11:29:04","activity_logs":[],"disciplines":[{"id":"1","label":"Psychologist","desc_text":null,"created":"1152725531","valid":"1","ordering":"-1","assocs":"APA","completion_only":"0","abbr":"psy","created_at":"2006-07-12 10:32:11","updated_at":"0000-00-00 00:00:00","pivot":{"id":"5","created_at":"2013-02-13 11:29:16","updated_at":"2013-02-13 11:29:16","conference_id":"102","discipline_id":"1"}},{"id":"8","label":"Alcohol/Drug Counselor","desc_text":null,"created":"1153074004","valid":"1","ordering":"3","assocs":"NAADAC","completion_only":"0","abbr":"acn","created_at":"2006-07-16 11:20:04","updated_at":"0000-00-00 00:00:00","pivot":{"id":"6","created_at":"2013-02-13 11:29:16","updated_at":"2013-02-13 11:29:16","conference_id":"102","discipline_id":"8"}},{"id":"13","label":"Massage Therapist","desc_text":null,"created":"0","valid":"1","ordering":"6","assocs":null,"completion_only":"1","abbr":"mass","created_at":"2006-07-18 12:01:31","updated_at":"0000-00-00 00:00:00","pivot":{"id":"7","created_at":"2013-02-13 11:29:16","updated_at":"2013-02-13 11:29:16","conference_id":"102","discipline_id":"13"}}],"states":[{"id":"38","code":"OR","name":"Oregon","country_code":"US","pivot":{"id":"6","created_at":"2013-02-13 11:29:16","updated_at":"2013-02-13 11:29:16","conference_id":"102","state_id":"38"}},{"id":"5","code":"CA","name":"California","country_code":"US","pivot":{"id":"5","created_at":"2013-02-13 11:29:16","updated_at":"2013-02-13 11:29:16","conference_id":"102","state_id":"5"}}],"messages":[],"marketing_materials":[],"days":[{"id":"1","conference_id":"102","happens_at":"2013-02-28 00:00:00","start_at":"0000-00-00 00:00:00","end_at":"0000-00-00 00:00:00","created_at":"2013-02-20 12:37:23","updated_at":"2013-02-20 12:37:23"}]}] 

这是我的模板视图:

    <script id="days" type="text/template">
            <a class="btn small-btn marginRight"></a>
    </script>

只是想我会在这里添加,如果我在上面使用模板标签,例如<% title %>,我会收到错误Uncaught ReferenceError: title is not defined

我筋疲力尽,自学骨干比想象的要难。任何帮助让这个球再次滚动都会很棒谢谢。

4

1 回答 1

5

修改视图

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

this.$el.html(this.template({days: JSON}));

修改模板

<script id="days" type="text/template">
    <% _.each(days, function(day) { %> <a class="btn small-btn marginRight"><%= day.title %></a> <% }); %>
</script>
于 2013-02-21T04:02:38.757 回答