How do you extract form data (form[method="post"]
) and file uploads sent from the HTTP POST
method in Node.js?
I've read the documentation, googled and found nothing.
function (request, response) {
//request.post????
}
Is there a library or a hack?
转载于:https://stackoverflow.com/questions/4295782/how-do-you-extract-post-data-in-node-js