Open aniruddhasm opened 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
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
Hello,
I am trying to implements simple ajax call to export the data. This is my below sample code
express-admin.js
app.js
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