gpt4 book ai didi

javascript - Object.values 在 IE 浏览器中抛出 TypeError - 如何填充它?

转载 作者:行者123 更新时间:2023-12-03 03:38:07 25 4
gpt4 key购买 nike

在我的 ember 应用程序中,我使用 Object.values 方法,该方法在 IE 浏览器中引发以下错误。

Object doesn't support property or method 'values' TypeError: Object doesn't support property or method 'values'

在我的 package.json

"ember-cli-babel": "^6.3.0" 

我的 target.js 文件显示,

module.exports = {
browsers: [
'ie 9',
'last 1 Chrome versions',
'last 1 Firefox versions',
'last 1 Safari versions'
]
};

我正在使用

ember-cli: 2.13.3
node: 6.3.1
支持

Object.values only in EDGE 。我如何在我的 ember 项目中填充它?类似地,对于 String.endsWith ,我只是将 polyfill 包含在 app.js 文件中。这里我想使用 babel-polyfill,这样它就会自动为我在 target.js

中提到的浏览器进行 polyfill

最佳答案

ember-cli-babel 带有 polyfill 支持配置。我应该仔细阅读他们的文档。我不知道下面的配置会发挥魔力。

// ember-cli-build.js

var app = new EmberApp(defaults, {
'ember-cli-babel': {
includePolyfill: true
}
});

https://github.com/babel/ember-cli-babel#polyfill

关于javascript - Object.values 在 IE 浏览器中抛出 TypeError - 如何填充它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45759718/

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