使用json响应填充数组

时间:2013-08-27 05:26:49

标签: javascript jquery html arrays angularjs

我想在控制器中填充我的数组但在我的数据库中我有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的帮助。

0 个答案:

没有答案