我正在尝试学习babel,所以我尝试了使用以下配置的在线babel REPL编辑器,我试图在IE11中使用promise和fetch来获取babel进行转译,
代码:
/*START: Fetch JSON Data from url and return promise with data*/
function status(response) {
if (response.status >= 200 && response.status < 300) {
return Promise.resolve(response)
} else {
return Promise.reject(new Error(response.statusText))
}
}
function json(response) {
return response.json()
}
function fetchJsonData(dataUrl) {
return fetch(dataUrl)
.then(status)
.then(json);
}
/*END: Fetch JSON Data from url and return promise with data*/
在此先感谢您的帮助