0

我有一个工作代码可以从 JSON 中获取数据并将其与 JQuery 一起使用。我可以不使用 JQuery 吗?我该怎么做?

 function performRequest(type, route, data) {
        return $.ajax({
            type: type,
            dataType: 'json',
            url:  '...' + route,
            data: data
        });
    }

    function getChannels() {
        log(' > get channels');
        return performRequest('GET', 'channel/list', {id: browserId}).then(function (response) {
            response.data.forEach(function (channel) {
                channels[channel.id] = channel;
            });
        });
    }
4

1 回答 1

1

使用 XMLHttpRequest?像这样 - 在 aTV2/3 上工作......

var req = new XMLHttpRequest();
req.onreadystatechange = function()
{
    if (req.readyState==4)  // 4: request is complete
    {
        data = JSON.parse(req.responseText);
    }
};
req.open('GET', url, true);  // true: asynchronous
req.send();
于 2016-04-11T18:05:06.913 回答