Forum Discussion
nfeng11
Jan 11, 2023Copper Contributor
"referenceerror: promise is not defined" when trying to refresh a Sharepoint List connection
We have an Excel report that pulls Sharepoint List data on refresh. It works fine for people except one user - he gets the following little window popup when he tries to refresh. If I clic...
nfeng11
Jan 12, 2023Copper Contributor
Not mine, it happens on another user's PC. We have many reports that pull Sharepoint List data this way, and I have never seen it error out like this.
I was suspecting that it was caused by IE being the default browser, so I set default browser to IE on my system and see if the error happens on mine, which did not.
I was suspecting that it was caused by IE being the default browser, so I set default browser to IE on my system and see if the error happens on mine, which did not.
peiyezhu
Jan 12, 2023Bronze Contributor
set default browser to IE on my system and see if the error happens on mine, which did not.???
i can not test on myside.
if u have found IE can not support promise,one way is to change to Chrome or Firefox on client side.
alternatively,
//import this js on server side or apply below javascript as browser plugin
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"> </script>
or
<script type="text/javascript" src="https://cdn.polyfill.io/v2/polyfill.min.js?features=es6"></script>
refer to:
https://www.cnblogs.com/marvelousone/p/11190726.html
i can not test on myside.
if u have found IE can not support promise,one way is to change to Chrome or Firefox on client side.
alternatively,
//import this js on server side or apply below javascript as browser plugin
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"> </script>
or
<script type="text/javascript" src="https://cdn.polyfill.io/v2/polyfill.min.js?features=es6"></script>
refer to:
https://www.cnblogs.com/marvelousone/p/11190726.html