gpt4 book ai didi

jquery - 在 Underscore 模板中使用 JSON 对象 - Backbone.js

转载 作者:行者123 更新时间:2023-12-01 00:10:51 27 4
gpt4 key购买 nike

我正在开发一个日历风格的主干应用程序,但对它还很陌生。我已经为此工作了 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 的控制台日志的更好 View 。 screenshot of 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"}]}] 

这是我的模板 View :

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

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

我很累,自学 Backbone 比人们想象的要难。任何能让这个球再次滚动的帮助都会很棒,谢谢。

最佳答案

修改 View

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>

关于jquery - 在 Underscore 模板中使用 JSON 对象 - Backbone.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14993552/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com