Google App Maker html模板中的表格格式

时间:2019-09-11 22:15:16

标签: google-app-maker

我有记录形式的关系数据:

Record : { Id: 40, Material: test, Size: test, Description: test, Quantity: test, Spec: test, Price:
test, Delivery: test, Quotes_fk: 21},
Record : { Id: 43, Material: test 2, Size: test 2, Description:
test 2, Quantity: test2, Spec: test2, Price: test2, Delivery: test2, Quotes_fk: 21}

我需要将此表格以pdf格式在表格中显示,其标题为ID,材料,尺寸,说明,数量,规格,价格,交货,并且由于我是编码新手,所以无法解决。我设法使用Regex格式使其具有可表示性,但是它必须为表格格式。到目前为止,我可以将数据更改为字符串,用换行符替换一些逗号。

var quotes = questionnaire.QuoteItems;
var quotes2 = quotes.toString();
var quotes3 = quotes2.replace(/{/g , "<br>");

1 个答案:

答案 0 :(得分:0)

设法处理相关记录中的每个项目并使用以下代码显示:

for(var i = 0; i <问卷.QuoteItems.length; i ++){

rows.push([questionnaire.QuoteItems [i]。材料,问卷调查。QuoteItems[i]。大小,问卷调查。QuoteItems[i] .Description,问卷调查.QuoteItems [i]。数量,问卷调查。QuoteItems[i] .Spec,问卷调查。QuoteItems[i]。价格,问卷调查.QuoteItems [i]。交付]);

}