为什么pdffiller不选中我的PDF复选框?

时间:2019-11-01 15:57:58

标签: javascript node.js forms pdf fdf

我们正在使用npm软件包pdffiller来用我们的数据填充PDF。在1个PDF上,我们将复选框的导出值设置为“是”,并且可以对复选框进行很好的检查。另一方面,我们已经做了相同的事情,但是它没有选中复选框。

我正在附上PDF。请注意,我们仅测试了几个复选框即可启动。请参阅第1页上的“申请人信息”下名为business.entityType.LLC的字段(LLC选项)。我们已经对它进行了一些测试,但这是一个简单的示例。

https://joncorrin.s3-us-west-2.amazonaws.com/Acord_125.pdf

enter image description here

这是我们要传入pdffiller的对象的示例,数据值为“是”(应引起检查)

object

这是创建对象后pdffiller代码的核心

{
  'business.entityType.LLC': 'Yes',
  'business.businessType.Service': 'Yes',
  'business.entityStartDate': '09/01/2017',
  'business.isOtherEntity': 'No',
  'business.hasOtherSubsidiaries': 'No',
  'business.hasSafetyProgram': 'No',
  'business.buildingHasDangerousMaterial': 'No',
  'business.hasOtherInsuranceWithCompany': 'No',
  'business.hasCancelled': 'No',
  'business.hasHadMisconductClaims': 'No',
  'business.hasBeenConvicted': 'No',
  'business.hasSafetyViolations': 'No',
  'business.hadBankruptcy': 'No',
  'business.hadLien': 'No',
  'business.hasTrust': 'No',
  'business.hasForeignOperations': 'No',
  'business.hasOtherVentures': 'No'
}

1 个答案:

答案 0 :(得分:0)

我认为我的问题是整个PDF或仅复选框字段均被锁定。奇怪的是,所有字段均已填充,但复选框字段除外。通过该软件-> https://smallpdf.com/运行PDF以解锁PDF时,复选框开始检查。