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
237 views
in Technique[技术] by (71.8m points)

forms - How to know which 'Submit' button was pressed in Node.js

When the user connects to my server I would want to display 2 forms, 'Accept' and 'Decline' with post method sent to my server, if the user clicks. How can I know which button was pressed when I handle the request on my server?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

In order to send two parameters the REST URL need to be

 app.post('buttonclicked/:id/:submit',function(req,res){...}

and in the Client end, the post url would be like

http://<server domain>/buttonclicked/<id>/<accept/decline>

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

...