I am making a axios call from a react file to a jsp file called getAuditData.jsp
axios.post('ajax/parserAudit/getAuditData.jsp', {'name':'john','class':'8'}
).then(response => {
//Success response processing
}).catch(error => {
// Error handling
}).then(() => {
});
And I want to access this data (i.e. {'name':'john','class':'8'}) in the jsp file getAuditData.jsp.
I tried using request.getParameter() but it does not work.
question from:
https://stackoverflow.com/questions/65642466/axios-call-to-jsp-file 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…