С помощью моего вызова Ajax я хочу полностью получить данные JSON. Итак, я трид: < /p>
$.ajax({
async: false,
type: 'GET',
dataType: 'json',
url: url,
data: data,
success: function(data) {
x=data;// It's wrong, but I don't know how to put whole json into x
}
})
Подробнее здесь: https://stackoverflow.com/questions/622 ... -with-ajax