この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Hi guys,
I have tried to use the SPA editor on IE 11 but no luck.
I tried my project (Angular) and Adobe samples (React and Angular) and got same error:
ERROR Error: Uncaught (in promise): ReferenceError: 'fetch' is undefined
ReferenceError: 'fetch' is undefined
No support for ie 11? Is there any link where I can get information about the supported browsers?
Thanks in advance.
解決済! 解決策の投稿を見る。
This worked for me! The essentials in my implementation were:
I was able to install each module via NPM and import them atop my index.js file of the react app, and IE 11 now has all of the polyfills needed to successfully run my react app. Thanks for the share, michaelr87730166!
React itself does not support Internet Explorer 11 natively.
Supported Browsers and Features · Create React App
// This must be the first line in src/index.js
import 'react-app-polyfill/ie11';
This isn't an AEM thing.
I am facing similar issue. I tried multiple polyfill (react-app-polyfill, core-js, babel-polyfill) but the issue is still there.
The sample wknd react app that AEM provides for SPA doesn't work with IE 11.
Initially I was getting 'unable to get property bind of undefined or null reference'. After adding the polyfills I am getting below error in IE 11:
Unhandled promise rejection Error: Access is denied
number: -2147024891
表示
返信
いいね!の合計
WHy, use that browser. I would advise clients to use Chrome or Firefox. Seems to be a lot of problems using IE.
I'm facing a very similar issue:
`unhandled promise rejection TypeError: Object doesn't support this action `
I have followed the polyfill instructions, but can't seem to figure this one out... any suggestions, anyone?
表示
返信
いいね!の合計
import 'core-js/es6';
import 'regenerator-runtime/runtime';
import 'react-app-polyfill/ie9';
import 'react-app-polyfill/ie11';
import 'react-app-polyfill/stable';
These libs need to be included in the import located in index.js of the project. You will also need to include the dependencies of the project definition.
This worked for me! The essentials in my implementation were:
I was able to install each module via NPM and import them atop my index.js file of the react app, and IE 11 now has all of the polyfills needed to successfully run my react app. Thanks for the share, michaelr87730166!