传播语法 Internet Explorer

Posted

技术标签:

【中文标题】传播语法 Internet Explorer【英文标题】:spread syntax Internet explorer 【发布时间】:2019-04-16 22:28:09 【问题描述】:

我不知道如何正确移植此代码以使其与 Internet Explorer 兼容...

const merged = [].concat(...responses.map(res => res.data));

如何简单地替换展开语法?

【问题讨论】:

找到了! const merge = Array.prototype.concat.apply([],response.map(function (res) return res.data )); @Vincent,来自您的最后一条评论。我可以看到你已经解决了这个问题。我建议您将您的解决方案发布为答案并将其标记为答案可能会帮助将来有相同问题的其他社区成员。 ... syntax 不是操作员 【参考方案1】:

const 合并 = Array.prototype.concat.apply([],responses.map(function (res) return res.data ));

【讨论】:

以上是关于传播语法 Internet Explorer的主要内容,如果未能解决你的问题,请参考以下文章

在对象数组中传播语法

Vue js 使用 Vuex 传播语法

在 postgres 中传播语法 JSONB 列

传播要删除的语法

Array.from() 与传播语法

在对象文字(...object)中传播语法有啥用途?