我正在使用 Form.io(http://formio.github.io/formio.js/app/examples/customendpoint.html
// Triggered when they click the submit button.
form.on('submit', function(submission) {
console.log(submission);
alert('Submission sent to custom endpoint. See developer console.');
return fetch('https://hookb.in/ZrRRbJBe', {
body: JSON.stringify(submission),
headers: {
'content-type': 'application/json'
},
method: 'POST',
mode: 'cors',
})
.then(response => {
form.emit('submitDone', submission)
response.json()
})
});
});
我在控制台日志中得到 JSON 响应。我正在尝试而不是将其放入控制台日志中,我想将数据放入 PDF 格式。我使用了代码
<div class="entry">
<h1>{{data.page1Text}}</h1>
<div class="body">
{{body}}
</div>
但它仍然以{{data.page1Text}}
任何方式出现,我可以使用该 JSON 作为 PDF 格式或放入 EXCEL,而不是放入控制台。