让我试着用文字来描述这个问题。我的数组中有一个标题,它应该以两个合并的单元格为中心。当 opentbs 循环遍历我的数组时,只有第一个标题在合并的单元格中,对于所有即将出现的标题,单元格合并都会丢失。
数组与此类似:
$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?