#docusignapi
#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 isnamp;apos;t the best type of board we need the amp;quot;Strong Stuffamp;quot;</value>
</text>
Но когда я просматриваю фактический документ с этим значением, он не переводится обратно?
Ответ №1:
Вы пробовали использовать escape-последовательности для кавычек («), в основном так:
<text>
<tabLabel>Specifications</tabLabel>
<value>this isn’t the best type of board we need the "Strong Stuff"</value>
</text>