I have tried to post data in postman and it returns a json object , the methods are working good . I have a problem to get the value of attribut when the api respond with a json object . the forma of json like this :
{
 "success" : "true"
}
the api method :
router.post("/sickers/user/login/", (req, res) => {
    var values = JSON.parse(req.body);
    var pass = values.password;
    var email = values.email;
    //console.log(values);
    if (pass !== null || pass !== "") {
        try {
            con.connect();
            con.query("SELECT Password FROM `sickers` WHERE Email='" + email + "'", function(err, rows, field) {
                if (err) {
                    console.log(err);
                    res.send("an error detected try later");
                } else {
                    try {
                        if (pass == rows[0].Password) {
                            //trying to send correct message from here
                            res.send({ success: "true" });
                            console.log("yes")
                        } else {
                            console.log("no")
                            res.send({ success: "false" });
                        }
                    } catch {
                        console.log("no")
                        res.send({ success: "false" });
                    }
                }
            });
        } catch (e) {
            res.send("no data found");
            console.log("obj not found");
        }
    }
con.end();
});
the post method from a react app is :
//submit values
async submithandler(e) {
    e.preventDefault();
   try{
   await fetch('http://localhost:8000/api/sickers/user/login/',{
     method:'post',
     mode:'no-cors',
     headers:{
         'Accept':'application/json',
         'Content-type': 'application/json'
     },
     body:JSON.stringify({
           password:this.state.password,
           email:this.state.email
     })
    })
    .then(response=>{
        this.setState({data:response})
        alert(data.success);
    })
    }catch(e){
        alert(e)
    }
}
the data declaration in state : data:[] the error is that the data is undefined .
 
    