我正在尝试使用模型中的console.log()
打印数据,但我失败了。
var student_read_data = new StudentModel({
id: studnet_id
});
console.log(student_read_data);
console.log("-- --- --- -- -- -- --- ");
console.log(student_read_data);
student_read_data.fetch({
success: function() {
console.log("Your Name is : " + student_read_data.get(name));
}
});
}
} else {
console.log("This is a test ");
}
}
});
$(function() {
var view = new StudentFilterView({
el: 'form',
model: new StudentModel()
});
});
答案 0 :(得分:0)
首先,您需要定义StudentModel是什么。
var StudentModel = Backbone.Model.extend();
然后你可以初始化
var student_read_data = new StudentModel({
id: "student_id"
});
现在你可以
console.log(student_read_data)