我在网上找不到同样的问题。 IE 11给出错误"对象不支持属性或方法observeEventType
"。
fill
有没有方便的方法来填充数组而不是使用var arr = new Array(5);
arr.fill(false);
循环?感谢。
答案 0 :(得分:15)
我面临着同样的问题,什么也不添加。
只需打开polyfills.ts文件并取消注释以下行:
/** 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';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/weak-map';
import 'core-js/es6/set';
一切都会开始。
答案 1 :(得分:10)
安装trivial polyfill并继续使用.fill(…)
。
答案 2 :(得分:1)
您可以使用Array。申请获取具有所需长度的数组,然后将值映射到该数组。
var a = Array.apply(null, { length: 5 }).map(function () { return false; });
console.log(a);

答案 3 :(得分:1)
我遇到了同样的问题,需要取消注释polyfill.ts文件中的以下几行:
Polyfill.ts文件路径:angular-App => src => polyfill.ts
打开此文件并取消注释以下行
/** 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';
// import 'core-js/es6/parse-int';
// import 'core-js/es6/parse-float';
// import 'core-js/es6/number';
// import 'core-js/es6/math';
import 'core-js/es6/string';
// import 'core-js/es6/date';
import 'core-js/es6/array';
// import 'core-js/es6/regexp';
// import 'core-js/es6/map';
// import 'core-js/es6/weak-map';
// import 'core-js/es6/set';
现在它对我有用。
答案 4 :(得分:0)
填充();在IE中不支持。它虽然在EDGE中引入。我想foreach是完成任务的便捷方式。如果找到更多,将更新。您可以阅读以下内容:
答案 5 :(得分:0)
添加以下脚本以将pollyfill从CDN下载到您的索引文件:
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=default,Array.prototype.includes"></script>
这应该有效。
答案 6 :(得分:0)
const arr = Array.from(Array(10), () => 'none')
console.log(arr)
// ['none', 'none', 'none', 'none', 'none', 'none', 'none', 'none', 'none', 'none']