admin管理员组文章数量:1344454
I am creating a URL in my angular app using new URL as below. This works on all browsers except IE11.
So I tried to add "url-polyfill" to my "package.json" and used import 'url-polyfill' in polyfills.ts file.
But still i am getting object doesn't support action error for this line in IE11. Can anyone provide some thoughts on what i am doing wrong here.
url = new URL(url).pathname.toLowerCase()
I am creating a URL in my angular app using new URL as below. This works on all browsers except IE11.
So I tried to add "url-polyfill" to my "package.json" and used import 'url-polyfill' in polyfills.ts file.
But still i am getting object doesn't support action error for this line in IE11. Can anyone provide some thoughts on what i am doing wrong here.
url = new URL(url).pathname.toLowerCase()
Share
Improve this question
asked Nov 27, 2019 at 13:42
Deadpool_erDeadpool_er
2551 gold badge4 silver badges25 bronze badges
1 Answer
Reset to default 11Angular includes imports to core-js@3 (you don't need to install something), so try these polyfills instead:
import 'core-js/features/url';
import 'core-js/features/url-search-params';
本文标签: javascriptURL Polyfill for IE11Stack Overflow
版权声明:本文标题:javascript - URL Polyfill for IE11 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743747641a2532053.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论