如何使用openTBS在XLSX中重复进行cellmerging?

时间:2017-09-01 08:46:07

标签: xlsx opentbs tinybutstrong

让我试着用文字描述问题。我的数组中有一个标题,它应该以两个合并的单元格为中心。当opentbs通过我的数组循环时,只有第一个标题在合并的单元格中,对于所有即将到来的标题,cellmerging会丢失。

数组类似于:

$data = [
    'name' => 'district one',
    'streets' => [
        [
            'name' => 'first street',
            'description' => 'first text',
        ],
        [
            'name' => 'second street',
            'description' => 'second text',
        ]
    ],
    'name' => 'district two',
    'streets' => [
        [
            'name' => 'third street',
            'description' => 'third text',
        ],
        [
            'name' => 'fourth street',
            'description' => 'fourth text',
        ]
    ],
]

我想要达到的细胞结构是这样的:

Cellstructure

这是模板的代码:

[data;block=begin;sub1=streets] 
[data.name;block=tbs.row]   
[data_sub1;block=begin] 
[data_sub1.name]    [data_sub1.description]
[data_sub1;block=end]   
[data;block=end]

这里是模板代码,结果只有一个img:

templatecode an result

如何使用openTBS重复进行cellmerging?

0 个答案:

没有答案