我有一个工作代码可以从 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;
});
});
}