Docusignapi Invalid_Request_Body XML如何编码特殊字符

时间:2016-10-17 16:16:19

标签: docusignapi

如何在XML中为textTabs值编码特殊字符。例如

<text>
<tabLabel>Specifications</tabLabel>
<value>this isn’t the best type of board we need the "Strong Stuff"</value>
</text>

通常我会用以下

替换特殊字符
<text>
<tabLabel>Specifications</tabLabel>
<value>this isn&apos;t the best type of board we need the &quot;Strong Stuff&quot;</value>
</text>

但是当我查看具有此值的实际文档时,它不会被翻译回来吗?

1 个答案:

答案 0 :(得分:0)

您是否尝试过使用转义序列作为引号(\&#34;),基本上是这样的:

<text>
<tabLabel>Specifications</tabLabel>
<value>this isn’t the best type of board we need the \"Strong Stuff\"</value>
</text>