本文概要
- Express.js POST方法
Express.js方便你处理GET和使用Express.js的情况下POST请求。
Express.js POST方法Post方法有利于你,因为数据是在身体发送发送大量的数据。因为数据是不是在URL栏可见,但它并不像普遍使用GET方法Post方法是安全的。在另一方面GET方法是更有效和使用多于POST。
让我们举个例子来说明POST方法。
例1:
取JSON格式数据
文件:index.html
<
html>
<
body>
<
form action="http://127.0.0.1:8000/process_post" method="POST">
First Name: <
input type="text" name="first_name"><
br>
Last Name: <
input type="text" name="last_name">
<
input type="submit" value="http://www.srcmini.com/Submit">
<
/form>
<
/body>
<
/html>
post_example1.js
var express = require('express');
var app = express();
var bodyParser = require('body-parser');
// Create application/x-www-form-urlencoded parser
var urlencodedParser = bodyParser.urlencoded({ extended: false })
app.use(express.static('public'));
app.get('/index.html',function (req,res) {
res.sendFile( __dirname + "/" + "index.html" );
})
app.post('/process_post',urlencodedParser,function (req,res) {
// Prepare output in JSON format
response = {
first_name:req.body.first_name,last_name:req.body.last_name
};
console.log(response);
res.end(JSON.stringify(response));
})
var server = app.listen(8000,function () {
var host = server.address().address
var port = server.address().port
console.log("Example app listening at http://%s:%s",host,port)
})
文章图片
打开index.html页面并填写条目:
文章图片
【Express.js POST请求】现在,你得到JSON格式的数据。
文章图片
文章图片