笔记:前端表单提交(一)- 3. 提交表单的路由
// 提交表单的路由 var submitForm = (req, res) => { req.on('data', (chunk) => { console.log(chunk); }); };