我被下划线和骨干困住了。我无法在下划线模板中呈现 JSON。浏览器不输出任何内容,但没有错误消息。这是我的工作:
服务器返回以下 json:
[{"id":"1","vorname":"Magnus","nachname":"R.","geb":"0","natio":""},{"id":"2","vorname":"Konstantin","nachname":"W.","geb":"0","natio":""}]
///////我的模型://///
define([
'underscore',
'backbone',
], function(_, Backbone){
var MitarbeiterModel = Backbone.Model.extend({});
return MitarbeiterModel;
});
/////我的收藏:///////
define([
'underscore',
'backbone',
'models/mitarbeiter',
], function(_, Backbone, MitarbeiterModel){
var MitarbeiterCollection = Backbone.Collection.extend({
model: MitarbeiterModel,
url: '/aquilamus/server/request.php',
});
return MitarbeiterCollection;
});
//////我的观点///////
define([
'jquery',
'underscore',
'backbone',
'collections/mitarbeiter',
'text!/aquilamus/templates/mitarbeiter/mitarbeiter.html'
], function($, _, Backbone, MitarbeiterCollection, MitarbeiterTemplate){
var MitarbeiterListView = Backbone.View.extend({
el: $("#container"),
initialize: function(){
this.collection = new MitarbeiterCollection;
var newtemplate = MitarbeiterTemplate;
_.templateSettings.variable = "rc";
this.template = _.template($(newtemplate).html());
},
render: function(){
var self = this;
// show some loading message
this.$el.html('Loading');
// fetch, when that is done, replace 'Loading' with content
this.collection.fetch().done(function(){
console.log(self.collection.toJSON());
var renderedContent = self.template(self.collection.toJSON());
self.$el.html(renderedContent);
});
return this;
}
});
// Our module now returns our view
return MitarbeiterListView;
});
下划线模板:
<script type='text/javascript' id='mitarbeiter-anzeigen'>
<% _.each( rc.mitarbeiter, function(mitarbeiter){ %>
<div>test</div>
<div><%= mitarbeiter.vorname %></div>
<% }); %>
</script>
console.log(self.collection.toJSON()) 记录以下内容: