我有一个角形5应用程序,工作在Chrome,Opera,Firefox和边缘完美。但在IE11中,该应用程序没有渲染。我包含了polyfills.ts文件,并安装了npm包classlist.js和web-animations-js。
/** IE9, IE10 and IE11 requires all of the following polyfills. **/
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function'
我有一个角度应用程序,我使用角版本12.0.5。我正在使用AngularFire来连接防火墙。我试图同时启用防火墙性能监视。但该应用程序未能在IE11中加载。我已经在AngularFire文档中添加了建议的多填充
Object doesn't support property or method 'then'
这是我在控制台- IE11中遇到的错误。
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
import "classlist.js";
所以我对我正在做的一个项目有一些问题--一切运行都很好,除了我试图取消对polyfill.ts for IE9,10和11中的导入语句的注释。我取消了所有注释,运行了npm安装--保存classlist.js和npm安装--保存网络动画--js。所有东西都是在chrome上构建和运行的,但是它仍然没有在IE11上运行,这种行为背后有什么想法吗?它以IE11上的角徽标打开,但只有一个空白屏幕。
我是不是遗漏了什么?我搜索了互联网,并与gitter交谈,但没有结果。
我也找到了类似的职位,但没有找到合适的答案。(例如,)
发现增设员额:
也是
尝试添加到index.html:< meta
在IE11中,库不能与Vue.js一起使用。我得到以下警告:
[Vue warn]: Unknown custom element: <picture> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
我可以使用Vue.config.ignoredElements = ['picture']删除警告,但这似乎不能解决问题。我认为在幕后,Vue.js正在使用图片标签,因为它不被IE1
我的应用程序和IE11有问题,所以我就克隆了项目,并尝试在IE11中运行它,得到了同样的错误:
RangeError (index): Index out of range: no indices are valid: 0
at ioore (http://10.0.2.2:8080/main.dart.js:3843:7)
at BrowserDomAdapter.getBaseHref$0 (http://10.0.2.2:8080/main.dart.js:29341:11)
at BrowserPlatformLocation.getBaseHrefFromDOM$0 (http://
我正在使用moment.js (expires变量)设置我的cookie的过期日期。下面的代码在Chrome中运行良好,但IE11和Edge不会在cookie上设置过期日期
var nowDate = new Date();
var creationDate = moment(nowDate);
var expiresDate = moment(nowDate).utc();
expiresDate.add(exdays, "d");
var expires = "expires=" + expir