2017-03-02 132 views

回答

0

假設json你收到這個樣子的:

{ 
    id: 1, 
    description: "sample json", 
    arrayList: ["list", "of", "sample", "elements"] 
} 

您可以使用ajax像下面撥打電話到您的API和success你會回來的data,所有你需要做的是使用arrayList的唯一密鑰來獲取相應的數組並在回調中將其返回。

function getArrayList(url, response) { 

    $.ajax({ 
    url: url, 
    type: 'GET', 
    dataType: 'json', 
    success: function(data) { 
    response(data.arrayList); 
    }, 
    error: function(request, error) { 
     console.log(error); 
    } 
    }); 

} 

getArraList(some_url, arrayList => console.log(arrayList))