Created
December 14, 2013 10:09
-
-
Save cuipengfei/7957546 to your computer and use it in GitHub Desktop.
express work good old form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express') | |
var app = express() | |
app.use(express.urlencoded()) | |
app.post('/form', function (req, res) { | |
var formDataReversed = req.body.str.split('').reverse().join('') | |
res.end(formDataReversed) | |
}) | |
app.listen(process.argv[2]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment