让我试着用文字描述问题。我的数组中有一个标题,它应该以两个合并的单元格为中心。当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',
]
],
]
我想要达到的细胞结构是这样的:
这是模板的代码:
[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:
如何使用openTBS重复进行cellmerging?