如何在IONIC 3应用程序中使用数据透视表

时间:2018-12-31 12:19:26

标签: ionic3 angular5 pivot-table

我正在尝试使用this库在我的离子应用程序中包含数据透视表。但是,每当我尝试在$("#output").pivot()文件中调用ts时,都会出现以下错误。

enter image description here

我还在index.html文件中包含了ivot.min.js。

我还尝试通过创建外部js文件ivottable.js并将其包含在index.html中,它成功显示了数据透视表。但是我的问题是,如何在外部js文件中调用typescript json变量?因为数据在$()中,所以pivot()是静态的,我想要动态数据。

pivottable.js

$(function(){
  $("#pivot").pivot(
  [
    {color: "blue", shape: "circle"},
    {color: "red", shape: "triangle"}
  ],
  {
    rows: ["color"],
    cols: ["shape"]
  }
  );

})

0 个答案:

没有答案