0

我在 jsx 文件中获取数据时遇到问题这是我的 jsx 文件代码

 VerifyRoom: function (e) {
        alert('user FindRooms');
       axios.get('/FindRooms').then( result => {
                       alert(result);
                        //projects: data
                      //this.props.history.push('/AdminIndex',data);
           });
       },

这是我的 sever.js 文件代码

app.get("/FindRooms", function (req, res) {
    AddRoom.find((err, body) => {
        console.log('success find room');
        console.log(body);
        if (err) {
            res.status(401).json(err.message);
        } else {
            res.status(200).json(body);
        }
       // const data =  JSON.parse(body);
        //const content = renderToString(<DataProvider {...renderProps} data={data}/>);
        //res.render('app/components/children/AdminIndex', {title: 'Express', body});

    });
});

我正在使用 MERN 堆栈,请给我任何解决方案

4

0 回答 0