我正在一个需要处理 ODT 文档的系统中实现 TinyButStrong / OpenTBS,并且我遇到了一个特定模板的问题,该模板在变量名中包含标签。
情况如下:
模板部分:
相关部分content.xml
<table:table-cell table:style-name="Table3.A1" office:value-type="string">
<text:p text:style-name="P22">Tipo de documento</text:p>
<text:p text:style-name="P29">
<text:span text:style-name="T7">
[b.</text:span>tipoDocumento<text:span text:style-name="T7">]
</text:span>
</text:p>
</table:table-cell>
如您所见,变量名称为</text:span>tipoDocumento<text:span text:style-name="T7">
. 该文档是在 LibreOffice 中编辑的,并且由于某种未知原因添加了标签。
我以为我可以传递完整的变量名(包括标签),OpenTBS 会正确解析该值,所以我尝试了以下操作:
$data = ['</text:span>tipoDocumento<text:span text:style-name="T7">' => 'somevalue'];
$tbs = new clsTinyButStrong;
$tbs->Plugin(TBS_INSTALL, OPENTBS_PLUGIN);
$tbs->LoadTemplate($templatePath, OPENTBS_ALREADY_UTF8);
// Note that we need to send an array of arrays to $data,
$tbs->MergeBlock($block, 'array', [$data]);
但这会导致 TBS 错误:
<b>TinyButStrong Error</b> in field [b.</text:span>tipoDocumento<text:span text:style-name...]: item '</text:span>tipoDocumento<text:span text:style-name' is not an existing key in the array. <em>This message can be cancelled using parameter 'noerr'.</em>
我已经进行了一些调试,并发现在核心tbs_class.php
第 1177 行(在 中meth_Locator_Replace()
,这是引发错误的地方),$Loc->SubLst[$i]
is的内容</text:span>tipoDocumento<text:span text:style-name
与我的数组中的值不匹配。
所以,我假设由于某种原因,TBS 正在通过等号 (=) 来爆炸索引,这导致了这个问题。所以,
- 这是故意的吗?
- 这可以修复(在出现错误的情况下)以允许带有等号的标签吗?
- 有没有更好的方法来避免变量中的标签,或者有没有办法在 LibreOffice 中避免这种情况?