0

I just started today with FIWARE and I havent understood yet the difference between widget and operator using this platform.

While I understood what a widget using wirecloud, I still dont have clear what an operator is in this context.

Google didnt help me a lot.

4

1 回答 1

0

WireCloud operator 是一个类似于 Widgets 的组件,它们使用 Web 技术(例如 JavaScript)进行编程,但不提供用户界面。从这个意义上说,它们并不打算在仪表板编辑器中使用,而是在Wiring Editor中使用。

运营商可以分为三种类型:

  • 数据源操作符:提供可供其他小部件/操作符使用的信息的操作符。例如,从 Web 服务检索某种类型的信息的操作员。
  • 数据目标操作员:提供信息并使用它来完成某些任务的操作员。例如,接收一些信息并将其推送到 Web 服务的操作员。
  • 数据转换运算符:这种类型的运算符非常有用,因为它们可以转换数据,以使其可供期望数据结构略有不同的小部件或运算符使用。

例如,在 WireCloud 中有一个通用的Map Viewer 小部件,它可以通过操作符连接到您选择的任何信息源(例如,您可以使用NGSI Source 操作符从 Orion 上下文代理获取信息)。如果您有 FIWARE Lab 帐户,您可以通过安装OrionStarterKitCKANStarterKit获得一些示例。

于 2015-10-08T01:59:01.703 回答