gpt4 book ai didi

javascript - 脚本438 : Object doesn't support property or method 'filter' IE10

转载 作者:行者123 更新时间:2023-12-02 17:45:47 24 4
gpt4 key购买 nike

我从网络服务加载一些数据并尝试过滤它。

var topLevelProductTypes = [];

topLevelProductTypes = productTypesArray.filter(function (pt) {
return (pt.NS_designcentreproducttypeid.Id === null);
});

我收到错误 SCRIPT438:对象不支持属性或方法“过滤器”

最佳答案

将此添加到您的标题中 <meta http-equiv="X-UA-Compatible" content="IE=edge" />

productTypesArray您的代码中看起来未声明。我假设它被分配给 array

if( Object.prototype.toString.call( productTypesArray) === '[object Array]' ) {
alert( 'It is an array' );
}

关于javascript - 脚本438 : Object doesn't support property or method 'filter' IE10,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21765415/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com