【发布时间】:2021-09-05 07:57:53
【问题描述】:
我想在 node.js 中编写一个程序,以便在我提交表单后,应使用用户输入的输入生成此表单的可下载 pdf。
<form>
<label for="name">Name:</label>
<input type="text" name="name" id="name" />
<label for="email">Email:</label>
<input type="email" name="email" id="email" />
<label for="contact">Contact Number:</label>
<input type="phone" name="contact" id="contact" />
<label for="company">Organization:</label>
<input type="text" name="company" id="company" />
<label for="designation">Designation:</label>
<input type="text" name="designation" id="designation" />
<input type="submit">
</form>
【问题讨论】:
-
请澄清您的具体问题或提供其他详细信息以准确突出您的需求。正如目前所写的那样,很难准确地说出你在问什么。
标签: javascript html node.js