have some troubles! For my requests i'm using Fetch API!
Submit form don't work in IE, because of "SCRIPT5009: 'fetch' is undefined"!
Example how it's looks like:
fetch("url",
{
method: "POST",
body: JSON.stringify(data),
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
}).then(function (response) {
return response.json().then(function (data)
Same time in Chrome and FF it's works fine! I'm already trying to find some solutions surfing Google, but it was unhelpful!
I was tried to installing "isomorphic-fetch" and "es6-promise" in npm, and tried to import it in my .js file, but it was unsuccessful as well, console shows me this: "Uncaught SyntaxError: Unexpected token import"! Btw, required() function don't work as well! So I'm totally don't now what to do, how to use these polyfill thing and all of that!
If some ones have an idea, thanks in advance!
BR!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…