使用 Backbone 从 JSON 服务收集集合,我使用视图初始化来激活提取,但是我现在想将 JSON 数组传递回视图,但我不确定如何实现这一点......
以下代码是我目前正在使用的:
app.AppView = Backbone.View.extend({
initialize: function(){
// Instanciate a new Form collection (which is derrived from the input model)
var inputs = new app.Form();
// Perform a GET on the model url to the service
inputs.fetch({
success: function() {
var questions = inputs.get(0).toJSON().Questions;
console.log(questions);
}, // End Success()
error: function(err){
console.log("Couldn't GET the service " + err);
}
}); // End Input.fetch()
this.render();
}, // End Initialize
render: function(){
el: $('#factfinder')
var template = _.template( $("#form_template").html(), {} );
this.$el.html(template);
}
}); // End AppView.Backbone.View.extend()