I'm using ES6, Promises and fetch in my Polymer 2 project. Because I need to support at least IE11, I'm transpiling with Babel (via polymer-build) and using polyfills.io to polyfill fetch and Promise support. My polyfills.io import happens before any other imports and looks like this:
<script src="https://cdn.polyfill.io/v2/polyfill.js?features=default,fetch&flags=gated"></script>
When I load the page, this error appears in the IE11 console:
SCRIPT438: Object doesn't support property or method 'catch'
Looking through my code, the only time I'm using catch is in Promises. For example:
loadSchemas() {
return APP.client
.search("+type:Schema")
.then(result => {
// Do things with results.
})
.catch(error => {
// Deal with errors.
});
}
If I remove the catch, the page loads without errors, but then it obviously isn't running my error handling code.
Why isn't this working as expected? It works fine in Firefox, Chrome, and Safari. I tried a number of different promise polyfills and still got the same error, so I don't think it's a polyfill bug.
Actually, if you import /webcomponentsjs/webcomponents-lite.js polyfill (with Polymer 2.x), it will most likely rewrote the Promise polyfill. And this polyfill currently has an open issue with "catch" :
Where proposed Workaround is:
I took a look at the webcomponents-lite polyfill for Promise, and they replace the Promise definition if the following is false (I simplified the writing):
However, even if you import Promise polyfill from other sources, they render to
"[object Object]"
, hence they are replaced.Note: the webcomponents-lite polyfill for Promise also currently doesn't expose a
Promise.all()
method, it's also probably due to above issue with Closure compiler.Proposed Workaround while this issue is not fixed:
Load your polyfill after the Webcomponents polyfill.