我想使用文本标签预填充所有文档,但每次只填充第一个文档,如果我对整个信封中的任何字段使用相同的lablename,那么其他文档字段也不会被填充直到除非我将任何事件作为密钥启动,keydown为第一份文件中的穿孔标签。这是我的docusign xml
<envelopeDefinition xmlns="http://www.docusign.com/restapi">
<accountId>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</accountId>
<status>sent</status>
<compositeTemplates>
<compositeTemplate>
<serverTemplates>
<serverTemplate>
<sequence>1</sequence>
<templateId>A5ADA6DA-C9E9-4FB6-A3C3-4267CCBD1046 </templateId>
</serverTemplate>
</serverTemplates>
<inlineTemplates>
<inlineTemplate>
<sequence>1</sequence>
<recipients>
<signers>
<signer>
<email>nitishalgo@gmail.com</email>
<name>Arvind Kejriwal</name>
<recipientId>1</recipientId>
<roleName>Signer1</roleName>
<clientUserId>1</clientUserId>
<tabs>
<textTabs>
<text>
<tabLabel>\*lblFullName</tabLabel>
<value>Arvind Kejriwal</value>
</text>
<text>
<tabLabel>\*lblFirstName</tabLabel>
<value>Arvind</value>
</text>
<text>
<tabLabel>\*lblLastName</tabLabel>
<value>Kejriwal</value>
</text>
<text>
<tabLabel>\*lblEmail</tabLabel>
<value>nitishalgo@gmail.com</value>
</text>
<text>
<tabLabel>\*lblPhone</tabLabel>
<value>664646464664644</value>
</text>
<text>
<tabLabel>\*lblCityStateZip</tabLabel>
<value>New Delhi,IN,110091</value>
</text>
<text>
<tabLabel>\*lblAddress</tabLabel>
<value>CM aawas</value>
</text>
<text>
<tabLabel>\*lblCity</tabLabel>
<value>New Delhi</value>
</text>
<text>
<tabLabel>\*lblState</tabLabel>
<value>IN</value>
</text>
<text>
<tabLabel>\*lblZip</tabLabel>
<value>110091</value>
</text>
</textTabs>
</tabs>
</signer>
</signers>
</recipients>
</inlineTemplate>
</inlineTemplates>
</compositeTemplate>
<compositeTemplate>
<serverTemplates>
<serverTemplate>
<sequence>2</sequence>
<templateId>1C00880D-52BF-4E22-947E-88167F81ED5D </templateId>
</serverTemplate>
</serverTemplates>
<inlineTemplates>
<inlineTemplate>
<sequence>1</sequence>
<recipients>
<signers>
<signer>
<email>nitishalgo@gmail.com</email>
<name>Arvind Kejriwal</name>
<recipientId>1</recipientId>
<roleName>Signer1</roleName>
<clientUserId>1</clientUserId>
<tabs>
<textTabs>
<text>
<tabLabel>\*lblFullName</tabLabel>
<value>Arvind Kejriwal</value>
</text>
<text>
<tabLabel>\*lblFirstName</tabLabel>
<value>Arvind</value>
</text>
<text>
<tabLabel>\*lblLastName</tabLabel>
<value>Kejriwal</value>
</text>
<text>
<tabLabel>\*lblEmail</tabLabel>
<value>nitishalgo@gmail.com</value>
</text>
<text>
<tabLabel>\*lblPhone</tabLabel>
<value>664646464664644</value>
</text>
<text>
<tabLabel>\*lblCityStateZip</tabLabel>
<value>New Delhi,IN,110091</value>
</text>
<text>
<tabLabel>\*lblAddress</tabLabel>
<value>CM aawas</value>
</text>
<text>
<tabLabel>\*lblCity</tabLabel>
<value>New Delhi</value>
</text>
<text>
<tabLabel>\*lblState</tabLabel>
<value>IN</value>
</text>
<text>
<tabLabel>\*lblZip</tabLabel>
<value>110091</value>
</text>
</textTabs>
</tabs>
</signer>
</signers>
</recipients>
</inlineTemplate>
</inlineTemplates>
</compositeTemplate>
</compositeTemplates>
答案 0 :(得分:0)
您在tabLabel
属性中缺少反斜杠(它应\\*
)。尝试在标签标签中预先挂起另一个反斜杠字符,如下所示:
...
<text>
<tabLabel>\\*lblFullName</tabLabel>
...