решил потихоньку выпилить jquery, начал с ajax-запросов.
Было:
function uAjax(url, data, requestType){
return $.ajax({
'type':requestType,
'url':url,
'dataType': 'json',
'data':data
})
}
uAjax("/info", {}, "GET")
Все работает, запрос уходит, данные приходят. Переписал (согласно
https://github.com/github/fetch):
import 'whatwg-fetch'
function uFetch(url, data, requestType){
return fetch(url, {
method: requestType,
body: data
});
}
uFetch("/info", {}, "GET").then((response) => {console.log(response.json());response.json()})
Запрос не отправляется + получаю букет ошибок:
Что не так накодил?