为位置编写锚标记的语法是什么?
what is the syntax for writing anchor tag for location?
我是 docusign 的新手 api。
我已经使用锚文本标签创建了一个演示项目。
我正在调用 CreateAndSendEnvelope 方法并在 iframe 中设置 url。
锚文本标签没有被 Docusign 控件取代。
是否需要使用任何特定语法?
我已尝试使用以下文本框语法 1) tbx_1_text_tag 2)\tbx2_1_text.
请帮忙
既然您提到了 CreateAndSendEnvelope
函数,我假设您使用的是 DocuSign 的 SOAP api 而不是 REST。您应该参考 GitHub 上的 SOAP SDK,因为它有很多示例和 4 种不同语言堆栈的工作代码:
https://github.com/docusign/DocuSign-eSignature-SDK
例如,如果您使用的是 PHP,这应该有效:
$fullAnchor = new Tab();
$fullAnchor->Type = TabTypeCode::FullName;
$anchor = new AnchorTab();
$anchor->AnchorTabString = "\tbx2_1_text";
$anchor->XOffset = -123;
$anchor->YOffset = 31;
$anchor->Unit = UnitTypeCode::Pixels;
$anchor->IgnoreIfNotPresent = true;
$fullAnchor->AnchorTabItem = $anchor;
$fullAnchor->DocumentID = "1";
$fullAnchor->PageNumber = "2";
$fullAnchor->RecipientID = "1";
array_push($tabs, $fullAnchor);
如果您使用的是 DocuSign REST api,您可以这样做:
"tabs": {
"signHereTabs": [
{
"anchorString": "\tbx2_1_text",
"anchorXOffset": "1",
"anchorYOffset": "0",
"anchorIgnoreIfNotPresent": "false",
"anchorUnits": "inches"
}
]
}
我是 docusign 的新手 api。
我已经使用锚文本标签创建了一个演示项目。 我正在调用 CreateAndSendEnvelope 方法并在 iframe 中设置 url。 锚文本标签没有被 Docusign 控件取代。 是否需要使用任何特定语法?
我已尝试使用以下文本框语法 1) tbx_1_text_tag 2)\tbx2_1_text.
请帮忙
既然您提到了 CreateAndSendEnvelope
函数,我假设您使用的是 DocuSign 的 SOAP api 而不是 REST。您应该参考 GitHub 上的 SOAP SDK,因为它有很多示例和 4 种不同语言堆栈的工作代码:
https://github.com/docusign/DocuSign-eSignature-SDK
例如,如果您使用的是 PHP,这应该有效:
$fullAnchor = new Tab();
$fullAnchor->Type = TabTypeCode::FullName;
$anchor = new AnchorTab();
$anchor->AnchorTabString = "\tbx2_1_text";
$anchor->XOffset = -123;
$anchor->YOffset = 31;
$anchor->Unit = UnitTypeCode::Pixels;
$anchor->IgnoreIfNotPresent = true;
$fullAnchor->AnchorTabItem = $anchor;
$fullAnchor->DocumentID = "1";
$fullAnchor->PageNumber = "2";
$fullAnchor->RecipientID = "1";
array_push($tabs, $fullAnchor);
如果您使用的是 DocuSign REST api,您可以这样做:
"tabs": {
"signHereTabs": [
{
"anchorString": "\tbx2_1_text",
"anchorXOffset": "1",
"anchorYOffset": "0",
"anchorIgnoreIfNotPresent": "false",
"anchorUnits": "inches"
}
]
}