-
Notifications
You must be signed in to change notification settings - Fork 219
Open
Description
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
Metadata
Metadata
Assignees
Labels
No labels