simov / express-admin

MySQL, MariaDB, PostgreSQL, SQLite admin for Node.js
MIT License
1.17k stars 222 forks source link

Ajax call not working #144

Open aniruddhasm opened 6 years ago

aniruddhasm commented 6 years ago

Hello,

I am trying to implements simple ajax call to export the data. This is my below sample code express-admin.js

              $.ajax({
            type: 'GET',
            contentType: 'application/json',
            url: 'http://localhost:6003/getdata?data=my_name',
            success: function(call) {
                console.log('success');
                //console.log(JSON.stringify(data));
            },
            error: function(errorData){
                console.log('error');
            }
        });

app.js

        app.get('/getdata', function (req, res, next) {
        console.log('req---'+JSON.stringify(req.query));
        //next() // pass control to the next handler
    });

I am not getting console.log in the from the app.js file. Let me know what is wrong with the above code. Please help I am stuck here