Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
233 views
in Technique[技术] by (71.8m points)

reactjs - axios call to jsp file

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...