昨天我的应用程序运行良好,但是当我现在执行 polymer serve -o
时,它会打开应用程序并在控制台中打印此错误。
Class constructor PolymerElement cannot be invoked without 'new'
最佳答案
根据 this post ,这个问题是因为 $polymer serve 自动将您的代码编译为 es5。 --compile never 标志会阻止 $polymer serve 这样做。
关于javascript - 没有 'new' 不能调用类构造函数 PolymerElement,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43520535/