Следующий код не работает на IE вообще.
fetch("{{{LINK TO API}}}", {
headers: {
"Accept": "application/json",
"Content-Type": "application/json"
}
})
.then(resp => resp.json())
.then(function(json) {
// SET VARIABLES
var seller = json.sellers[Math.floor(Math.random() * Math.floor(json.sellers.length))];
// INSERT COMPANY LOGO
companyLogo.src = json.logo_url;
// INSERT SELLER PROFILES
document.querySelectorAll("[data-seller-profile]").forEach(wrapper => {
var innerHTML = "";
innerHTML += "<img class='hbba-profile-img' src='" + seller.profile_image + "'>";
innerHTML += "<div class='hbba-desc-wrapper'>";
innerHTML += "<span class='hbba-desc-name'>" + seller.name + "</span>";
innerHTML += "<span class='hbba-desc-title'>" + seller.job_title + "</span>";
innerHTML += "</div>";
innerHTML += "<div class='hbba-is-active'></div>";
wrapper.innerHTML = innerHTML;
});
});
Код находится в среде Webpack и соответствует @ babel / preset-env, а также @ babel / polyfill как entry: ["@babel/polyfill", "./src/main.js"],
.
Скомпилированный код: fetch("https://helpbox-by-avense.se/api/company/1/init-info",{headers:{Accept:"application/json","Content-Type":"application/json"}}).then(function(t){return t.json()}).then(function(t){var n=t.sellers[Math.floor(Math.random()*Math.floor(t.sellers.length))];u.src=t.logo_url,document.querySelectorAll("[data-seller-profile]").forEach(function(t){var e="";e+="<img class='hbba-profile-img' src='"+n.profile_image+"'>",e+="<div class='hbba-desc-wrapper'>",e+="<span class='hbba-desc-name'>"+n.name+"</span>",e+="<span class='hbba-desc-title'>"+n.job_title+"</span>",e+="</div>",e+="<div class='hbba-is-active'></div>",t.innerHTML=e})})
Что нужно изменить, чтобы он работал в IE?