如何使用小部件AMI.js

时间:2018-03-09 15:02:27

标签: ami.js

在AMI.js中小部件的示例代码中,他们从< base / widgets / widgets.handle'中获取WidgetsHandle。有没有办法在只使用AMI库而不访问整个仓库时访问小部件?我试过了

var wh = new AMI.WidgetsHandle(a,b,c,d)

但它说它不是构造函数。

(例如https://github.com/FNNDSC/ami/blob/dev/examples/widget_handle/widget_handle.js

1 个答案:

答案 0 :(得分:1)

您应该使用“AMI.HandleWidget”。

已导出there

您的代码应如下所示:

const handle = new AMI.HandleWidget(...)

HTH,