1

我正在使用 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,而不是放入控制台。

4

1 回答 1

0

要在 PDF 输出中显示表单数据,您需要在表单中使用 Content 组件,然后您可以使用以下内容打印字段数据。

<h1>{{ data.page1Text }}</h1>
于 2018-10-04T01:55:33.773 回答