express框架
- 安裝
npm install express --save
- 開啟服務
新建一個項目->npm init ->npm install express
var express = require('express');
//創(chuàng)建服務對象脚猾,類似于http.createServer
var app = express();
//程序監(jiān)聽9999端口號
// app.listen(9999)
app.listen(9999,function(){
//監(jiān)聽ok的回調(diào)函數(shù)
console.log("SERVER RUN")
})
//路由分發(fā),處理以及回應請求
app.get('/',function(req,res){
res.end("<h1>Hello Express</h1>")
//1.req
//獲得「請求主體」/ Cookies
console.log(req.body)
//獲取請求路徑
console.log(req.path)
//2.res 設置一些返回信息數(shù)據(jù)
//res.render(view,[locals],callback):渲染一個view企孩,同時向callback傳遞渲染后的字符串,如果在渲染過程中有錯誤發(fā)生next(err)將會被自動調(diào)用。callback將會被傳入一個可能發(fā)生的錯誤以及渲染后的頁面,這樣就不會自動輸出了讶泰。
})
其中
- Request參數(shù)對象表示 HTTP 請求信息,比如:
req.baseUrl:獲取路由當前安裝的URL路徑
req.path:獲取請求路徑
- Response 對象 表示 HTTP 響應拂到,即在接收到請求時向客戶端發(fā)送的 HTTP 響應數(shù)據(jù) 比如:
res.status():設置HTTP狀態(tài)碼
路由
不同路徑請求不同的數(shù)據(jù),當然還要區(qū)分是Get還是POST請求(通過路由提取出請求的URL以及GET/POST參數(shù)痪署。)
// 主頁輸出 "Hello World"
app.get('/', function (req, res) {
console.log("主頁 GET 請求");
res.send('Hello GET');
})
// POST 請求
app.post('/', function (req, res) {
console.log("主頁 POST 請求");
res.send('Hello POST');
})
// /list_user 頁面 GET 請求
app.get('/list_user', function (req, res) {
console.log("/list_user GET 請求");
res.send('用戶列表頁面');
})
// 對頁面 abcd, abxcd, ab123cd, 等響應 GET 請求
app.get('/ab*cd', function(req, res) {
console.log("/ab*cd GET 請求");
res.send('正則匹配');
})
靜態(tài)文件
圖片/css/動畫js等,express中存在static中間件來設置靜態(tài)文件的路徑,
比如
app.use(express.static('public'))
目錄結(jié)構(gòu)
---index.js
---public
---image
---logo.jpg
在public文件夾中有images文件夾兄旬,在images文件夾中有l(wèi)ogo.jpg, 那么就可以在路徑localhost:8888/images/logo.jpg中得到這張圖片
表單的兩種提交方式:POST vs GET
主要區(qū)別是get會通過&符號提交數(shù)據(jù)
localhost:8888?name=xie&age=19
- GET:
<html>
<body>
<form action="http://127.0.0.1:8081/process_get" method="GET">
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>
var express = require('express');
var app = express();
app.use(express.static('public'));
app.get('/index.htm', function (req, res) {
res.sendFile( __dirname + "/" + "index.htm" );
})
app.get('/process_get', function (req, res) {
// 輸出 JSON 格式
var response = {
"first_name":req.query.first_name,
"last_name":req.query.last_name
};
console.log(response);
res.end(JSON.stringify(response));
})
var server = app.listen(8081, function () {
var host = server.address().address
var port = server.address().port
console.log("應用實例狼犯,訪問地址為 http://%s:%s", host, port)
})
2.POST
<html>
<body>
<form action="http://127.0.0.1:8081/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>
var express = require('express');
var app = express();
//傳遞來的body里面的數(shù)據(jù)解析
var bodyParser = require('body-parser');
// 創(chuàng)建 application/x-www-form-urlencoded 編碼解析
var urlencodedParser = bodyParser.urlencoded({ extended: false })
app.use(express.static('public'));
app.get('/index.htm', function (req, res) {
res.sendFile( __dirname + "/" + "index.htm" );
})
app.post('/process_post', urlencodedParser, function (req, res) {
// 輸出 JSON 格式
var 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(8081, function () {
var host = server.address().address
var port = server.address().port
console.log("應用實例,訪問地址為 http://%s:%s", host, port)
})
文件上傳
<html>
<head>
<title>文件上傳表單</title>
</head>
<body>
<h3>文件上傳:</h3>
選擇一個文件上傳: <br />
<form action="/file_upload" method="post" enctype="multipart/form-data">
<input type="file" name="image" size="50" />
<br />
<input type="submit" value="上傳文件" />
</form>
</body>
</html>
var express = require('express');
var app = express();
var fs = require("fs");
var bodyParser = require('body-parser');
var multer = require('multer');
app.use(express.static('public'));
app.use(bodyParser.urlencoded({ extended: false }));
app.use(multer({ dest: '/tmp/'}).array('image'));
app.get('/index.htm', function (req, res) {
res.sendFile( __dirname + "/" + "index.htm" );
})
app.post('/file_upload', function (req, res) {
console.log(req.files[0]); // 上傳的文件信息
var des_file = __dirname + "/" + req.files[0].originalname;
fs.readFile( req.files[0].path, function (err, data) {
fs.writeFile(des_file, data, function (err) {
if( err ){
console.log( err );
}else{
response = {
message:'File uploaded successfully',
filename:req.files[0].originalname
};
}
console.log( response );
res.end( JSON.stringify( response ) );
});
});
})
var server = app.listen(8081, function () {
var host = server.address().address
var port = server.address().port
console.log("應用實例领铐,訪問地址為 http://%s:%s", host, port)
})
RESTful API
rest以及RESTful API的理解
rest是一組架構(gòu)約束條件和原則悯森,符合REST設計標準的API,即RESTful API罐孝。呐馆,REST 通常使用 JSON 數(shù)據(jù)格式 所以RESTful Api就是通過JSON格式的數(shù)據(jù)返回的API,通俗而言就是前后端分離