-1
Я пытаюсь распечатать данные с помощью 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()
});
});