对象不支持 属性 或方法 'startsWith'
Object doesn't support property or method 'startsWith'
在我的 webpack 中:
{
"presets": [
["env", {
"targets": {
"browsers": [">0.1%", "last 4 versions", "not ie <= 9"]
}
}]
]
}
但是我的IE有错误:
Object doesn't support property or method 'startsWith'
startsWith
是String的一个方法,'hello there'.startsWith('hello') === true
。它不受任何版本的 IE 支持,但您可以 polyfill it. polyfill.io 非常擅长以零努力捕获大量此类内容。
在我的 webpack 中:
{
"presets": [
["env", {
"targets": {
"browsers": [">0.1%", "last 4 versions", "not ie <= 9"]
}
}]
]
}
但是我的IE有错误:
Object doesn't support property or method 'startsWith'
startsWith
是String的一个方法,'hello there'.startsWith('hello') === true
。它不受任何版本的 IE 支持,但您可以 polyfill it. polyfill.io 非常擅长以零努力捕获大量此类内容。