本文概要
GET和POST都是用于建筑REST API的两种常见的HTTP请求。 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="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页面并填写条目:
现在,你得到JSON格式的数据。
评论前必须登录!
注册