0

我最近开始收到错误:

TypeError: Object #<Port> has no method 'isAddressable'

TypeError: Object #<ArrayPort> has no method 'isAddressable'

我正在我的组件上创建端口,例如:

this.inPorts.in = new noflo.Port();
4

1 回答 1

2

看起来你在混合的某个地方有 NoFlo 0.4 或更高版本。

isAddressable方法是在 0.5 中添加的。

查看npm list您安装了哪些软件包,而不是旧版本的 NoFlo。

于 2014-06-19T08:29:29.797 回答