1 let str = ‘‘;2 //将数据拼装起来3 req.on(‘data‘,chunk=>{4 ?????str += chunk;5 });6 req.on(‘end‘,()=> {7 ????console.log(str); 8 });
vue 利用js模拟接收表单数据
1 let str = ‘‘;2 //将数据拼装起来3 req.on(‘data‘,chunk=>{4 ?????str += chunk;5 });6 req.on(‘end‘,()=> {7 ????console.log(str); 8 });
vue 利用js模拟接收表单数据