我想在控制器中填充我的数组但在我的数据库中我有id,name,age ...我如何使用angular,javascript或Jquery填充我的数组?
我试过这个
$scope.myarray=[];
function load(callback){
$.ajax({
type: "GET",
url: 'the url',
dataType: "json",
context: this,
success: function(response) {
callback.call(this, response.name);
$scope.myarray.push(response.name);
}
});
它没有填写$ scope.myarray的帮助。