进行更改时无法读取未定义的 属性 'call'

Cannot read property 'call' of undefined when making a change

在我安装 ionic-native 之前一切正常,每次我进行更改时都会显示此错误。

Runtime Error Cannot read property 'call' of undefined

所以我每次做出改变都需要重新运行 ionic serve

您必须查看是哪个函数调用出错了。 根据错误,您尝试调用的函数未定义,因此您无法对其调用 "call" 方法。

例如myFun.call(myCtx, arg1, arg2,...); 在你的情况下 myFun 是未定义的

根据我的经验,此错误通常是同一台机器上 运行 多个 "ionic server" 的结果。仔细检查你不是 运行 在另一个终端 window.