隐藏Jspdf-Autotable中的空列

时间:2019-06-27 08:29:07

标签: reactjs jspdf jspdf-autotable

在jspdf-autotable中准备摘要报告。如何隐藏空的列和标题

const headers=[["PRICE","CARRIER","CUSTOMER ID","QUANTITY"]] 
const data = this.state.data.map(elt=> [elt.price,elt.carrier,elt.from,elt.duration]); 

let content = {
  startY: 50,
  head: headers,
  body: data,

};

doc.text(title, marginLeft, 40);
doc.autoTable(content);

我希望输出将pdf中的customerid隐藏,因为表localization#app-name-android中没有任何数据

1 个答案:

答案 0 :(得分:0)

最简单的解决方案可能是在将这些值传递给插件之前过滤掉这些值。