我最近开始发现错误:

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

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

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

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

最佳答案

看起来您的混合位置中有NoFlo 0.4或更旧的版本。

isAddressable方法添加为0.5。

查看npm list以查看您安装了哪些较旧的,不兼容的NoFlo版本的软件包。

09-20 04:14