0

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

4

0 回答 0