2

我在 IE11 下收到此错误:

对象不支持在线“for”这个属性或方法:

var esSymKey = useSymbol ? Symbol.for(esStrKey) : null; 

来自 modules.js 中的 node_modules/meteor/modules/node_modules/reify/lib/runtime/utils.js

我试图更新所有内容但没有运气

我的包裹清单如下:

meteor-base

mobile-experience
mongo
blaze-html-templates 
session     
jquery@1.11.10  
tracker
es5-shim

coffeescript
msavin:mongol
tap:i18n
tap:i18n-db-modified
globalconstants
reywood:publish-composite
fourseven:scss
reactive-var
mystor:device-detection
subs-manager-modified
fastclick
check
manuelschoebel:ms-seo-modified
mrt:modernizr-meteor
gorillastack:iron-router-gtm
iron:router
standard-minifier-css
standard-minifier-js
add-scripts
tap:i18n-bundler
shell-server
dynamic-import
webapp

chrome-spiderable

你有什么主意吗?

谢谢。

4

1 回答 1

2

IE 11 不支持Symbol

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol

您将需要添加一个 polyfill 来添加对它的支持。

https://github.com/medikoo/es6-symbol

如果你正在使用其他 es6+ 特性,你可能会在 polyfilling 之后立即遇到另一个错误Symbol。您可能应该使用某种转译器,例如Babel。它将确保您的新代码在旧浏览器上运行。

于 2017-10-19T17:30:10.243 回答