0

我正在开发基于simple-json的数据源插件。我想使用库angular-ivh-treeview,但我不明白如何在插件中使用它。有人能帮我吗?

4

1 回答 1

1

要在插件中使用外部 JavaScript 库,您必须将其包含在插件代码中。node_modules 中的 JavaScript 库仅在构建时使用,不包含在输出中。

举个例子,这里是 Plotly 面板插件,它在名为的子目录中包含 Plotly 库lib

https://github.com/NatelEnergy/grafana-plotly-panel/tree/master/src/lib

然后在这里使用它:

https://github.com/NatelEnergy/grafana-plotly-panel/blob/master/src/module.js#L8

另一个例子 - 包含 mapboxgl 库的 GeoLoop 插件:

https://github.com/CitiLogics/citilogics-geoloop-panel/blob/master/src/geoloop.js#L3

于 2017-11-29T10:42:25.697 回答