ผมส่ง POST ไม่ไปครับช่วยด้วยครับเครียดมาก

อันนี้คือส่วนของฝั่งไฟล์ js ครับ
app.post('/add', function (req, res) {
    console.log("test");
    console.log(req.body);
    var postData = req.body;
    connection.query("INSERT INTO users (user_name, user_pass, user_email) VALUES (?, ?, ?)", [req.body.user_name,req.body.user_pass,req.body.user_email], function (error, results, fields) {
        if (error) throw error;
        res.end(JSON.stringify(results));
    });
});

code ส่วนเนี่ยผมเอาไปลองใน Postman แล้วส่ง post ไปมัน post ข้อมูลได้ปกติครับไม่มีปัญหาอะไร

แต่พอผมเขียน code ด้านล่างนี้เพื่อส่งข้อมูลไปมันไม่เข้าตัว post ด้านบนครับ
อันนี้ส่วนของฝั่งไฟล์ html ครับ

                         const requestBody = {
                                user_name: this.name,
                                user_pass: this.pass,
                                user_email: this.email
                            }

                            const config = {
                                headers: {
                                    'Content-Type': 'application/x-www-form-urlencoded'
                                }
                            }

                            axios.post(url,requestBody,config).then(function (response) {
                                alert("res");
                                console.log(response);
                            }).catch(function (error) {
                                alert("error");
                                console.log(error);
                            });

**tagห้องไหนผิดขอโทษด้วยครับ
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่