Created
July 30, 2015 15:58
-
-
Save ripper2hl/ae6533e14078bc9b0119 to your computer and use it in GitHub Desktop.
Peticion con error de porcentaje y acentos
This file contains hidden or 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
'use strict'; | |
var express = require('express'); | |
var router = express.Router(); | |
router.post('/test', function (req, res) { | |
console.log(req.body); | |
res.send(req.body); | |
}); | |
module.exports = router; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment