我使用jsPDF创建了一个带可编辑字段的pdf文档。一切看起来都很棒,但是当我打印它时,不包括字段值。 这是一些示例代码(来自jsPDF / examples / js / AcroForm.js)来测试它:
var doc = new jsPDF();
doc.text(10, 65, 'TextField:');
var textField = new TextField();
textField.Rect = [50, 50, 120, 80];
textField.multiline = true;
textField.V = "The quick brown fox ate the lazy mouse The quick brown fox ate the lazy mouse The quick brown fox ate the lazy mouse";
textField.T = "TestTextBox";
doc.addField(textField);
doc.save('Test.pdf');
我是否需要做其他事情才能打印字段文本?我在Acrobat中打开了生成的pdf文件,它识别了这些字段,但不会打印内容。