您好,登錄后才能下訂單哦!
一、request、response、cookie介紹和區(qū)別
request(中文“請求”的意思):可以理解為客戶端向服務(wù)器請求的信息,就是客戶端向服務(wù)器請求時,把自己的瀏覽器信息、HTTP變量和保存在客戶端的Cookie告訴服務(wù)器,這樣服務(wù)器就可以根據(jù)這些信息判斷是誰請求的,之前有沒有請求過,對應(yīng)客戶端的Session是什么等等。
response(中文“反應(yīng)、響應(yīng)”的意思):可以理解為服務(wù)器對客戶端請求的響應(yīng),就是服務(wù)器接收到客戶端的請求后,成生頁面信息、Cookie(發(fā)到客戶端后就保存在客戶端)等發(fā)送到客戶端。
cookie(中文“餅干”,在這里不能這樣理解了):就是保存在客戶端上的一些信息,可以用來驗(yàn)證用戶信息,提高用戶響應(yīng)速度等等。
response.cookie是將內(nèi)容寫入到客戶端的COOKIE里面 這個是在瀏覽器內(nèi)的!
request.cookie是將內(nèi)容從客戶端瀏覽器里面讀出來對應(yīng)的COOKIE內(nèi)容!
從請求中獲取cookie就用Request.Cookies,
要給客戶端寫cookie就用Response.Cookies
二、express模塊中的req,res參數(shù)的常用屬性方法
const express = require('express');
const router = express.Router()
router.get('/',(req,res)=>{
// Request
// req.baseUrl 基礎(chǔ)路由地址
// req.body post發(fā)送的數(shù)據(jù)解析出來的對象
// req.cookies 客戶端發(fā)送的cookies數(shù)據(jù)
// req.hostname 主機(jī)地址 去掉端口號
// req.ip 查看客戶端的ip地址
// req.ips 代理的IP地址
// req.originalUrl 對req.url的一個備份
// req.params 在使用/:id/:name 匹配params
// req.path 包含請求URL的路徑部分
// req.protocol http 或https協(xié)議
// req.query 查詢字符串解析出來的對象 username=zhangsan&password=123 { username:zhangsan }
// req.route 當(dāng)前匹配的路由 正則表達(dá)式
// req.params 獲取路由匹配的參數(shù)
// req.get 獲取請求header里的參數(shù)
// req.is 判斷請求的是什么類型的文件
// req.param(key名稱) 用來獲取某一個路由匹配的參數(shù)
//Response
// res.headersSent 查看http響應(yīng)是否響應(yīng)了http頭
// res.append(名稱,value) 追加http響應(yīng)頭
// res.attachment(文件路徑) 響應(yīng)文件請求
// res.cookie() 設(shè)置cookie
//res.setHeader('Content-Type','text/html;charset=utf8')
// res.append('Content-Type','text/html;charset=utf8')
// res.append('hehe','1008')
// res.append('haha','1008')
// res.attachment('./xx.zip') //Content-Disposition: attachment; filename="xx.zip"
// res.clearCookie(cookiename) 刪除cookie
// res.cookie('zhangsan','lisi') 設(shè)置cookie
// res.cookie('zhangsan1','lisi2',{
// maxAge:900000,
// httpOnly:true,
// path: '/admin',
// secure: true,
// signed:true
// })
// res.clearCookie('zhangsan')
// res.download(文件的path路徑) 跟attachment類似 用來處理文件下載的 參數(shù)是文件地址
// res.end http模塊自帶的
// res.format()協(xié)商請求文件類型 format匹配協(xié)商的文件類型
// res.format({
// 'text/plain': function(){
// res.send('hey');
// },
// 'text/html': function(){
// res.send('<p>hey</p>');
// },
// 'application/json': function(){
// res.send({ message: 'hey' });
// },
// 'default': function() {
// // log the request and respond with 406
// res.status(406).send('Not Acceptable');
// }
// });
// res.get('key') 獲取響應(yīng)header數(shù)據(jù)
// res.json() 返回json數(shù)據(jù) 會自動設(shè)置響應(yīng)header Content-type 為json格式 application/json
// res.json({
// xx:100
// })
// res.json({
// xx:100
// })
// jsonp 利用的就是瀏覽器加載其他服務(wù)器的文件不會存在跨域問題
// ajax請求就會有跨域問題
// res.setHeader('Content-Type','text/javascript;charsert=utf8')
// res.end(`typeof ${req.query.callback} == 'function' ? ${req.query.callback}({aa:100}):null`)
// res.jsonp({aaa:100})
// 重定向 把訪問的地址跳轉(zhuǎn)到另一個地址上
// res.redirect(301,'/api/aes')
// express jade
// res.render('index',{title:"hehe",test:"23"})
// res.send('') 發(fā)送數(shù)據(jù) 可以是任意類型的數(shù)據(jù)
// res.sendFile() 發(fā)送文件的
// res.sendStatus(200) 設(shè)置發(fā)送時的狀態(tài)碼
// res.set('Content-Type', 'text/plain') //設(shè)置響應(yīng)header
// res.status(200) // 設(shè)置狀態(tài)碼
// res.type('') // 直接設(shè)置響應(yīng)的文件類型
// res.type('pdf')
// res.send({aa:100})
// res.end('ok')
// res.end({aa:100})
// res.end('你好')
// res.end(req.get('Accept-Language'))
// res.json({
// is:req.is('text/html')
// })
// res.json({
// type:req.baseUrl,
// hostname:req.hostname,
// // ip:req.ip,
// // ips:req.ips,
// // route:req.route,
// ct:req.get('Accept'),
// cs:'22'
// })
})
router.get('/:id/:date',(req,res)=>{
console.log(req.params)
// res.json(req.params)
res.end(req.param('date'))
})
router.get('/aes',(req,res)=>{
res.json({
type:req.baseUrl
})
})
module.exports = router
二、EventEmitter
Node.js 所有的異步 I/O 操作在完成時都會發(fā)送一個事件到事件隊(duì)列。
也就是,比如讀取文件成功了,執(zhí)行后面的回調(diào)函數(shù),這個回調(diào)函數(shù)就是一個事件隊(duì)列
Node.js 里面的許多對象都會分發(fā)事件:一個 net.Server 對象會在每次有新連接時觸發(fā)一個事件, 一個 fs.readStream 對象會在文件被打開的時候觸發(fā)一個事件。 所有這些產(chǎn)生事件的對象都是 events.EventEmitter 的實(shí)例。
EventEmitter 類
events 模塊只提供了一個對象: events.EventEmitter。EventEmitter 的核心就是事件觸發(fā)與事件監(jiān)聽器功能的封裝
使用該對象前,先通過require("events");來訪問該模塊。
//引入事件模塊
var events = require('events');
//創(chuàng)建EventEmitter對象
var eventEmitter = new events.EventEmitter();
//創(chuàng)建事件處理程序
var connectHandle = function () {
console.log('連接成功!')
}
// 綁定事件及事件的處理程序
eventEmitter.on('connect',connectHandle)
//觸發(fā)事件
eventEmitter.emit('connect')
//結(jié)果 輸出:連接成功!
PS.大多數(shù)時候我們不會直接使用 EventEmitter,而是在對象中繼承它。包括 fs、net、 http 在內(nèi)的,只要是支持事件響應(yīng)的核心模塊都是 EventEmitter 的子類。
三、Node.js模塊系統(tǒng)【文件即模塊,模塊即文件】
為了讓Node.js的文件可以相互調(diào)用,Node.js提供了一個簡單的模塊系統(tǒng)。
模塊是Node.js 應(yīng)用程序的基本組成部分,文件和模塊是一一對應(yīng)的。
換言之,一個 Node.js 文件就是一個模塊,這個文件可能是JavaScript 代碼、JSON 或者編譯過的C/C++ 擴(kuò)展
exports 和 module.exports 的使用
如果要對外暴露屬性或方法,就用 exports 就行,要暴露對象(類似class,包含了很多屬性和方法),就用 module.exports。
舉例:直接暴露屬性或方法
//b.js
exports.world = function(){
console.log('你好')
}
//a.js
var hello = require('b');
hello.world(); // 你好
暴露對象
//b.js
var b = function(n){
this.name = n;
this.setName = function(n){
this.name = n;
}
this.getName = function(){
console.oog(this.name)
}
}
module.exports = b
//a.js
var hello = require('b');
var w = new hello();
w.getName();
四、Node.js 全局對象
全局對象:global對象
全局變量:global及其所有屬性,可以在程序的任何地方訪問到
//__filename 輸出當(dāng)前執(zhí)行文件所在位置的絕對路徑
console.log(__filename); //G:\nodeWork\global\index.js
//__dirname 輸出當(dāng)前執(zhí)行文件所在目錄的絕對路徑。
console.log(__dirname);
五、url.parse方法
方法說明:
講一個URL字符串轉(zhuǎn)換成對象并返回。
語法:
url.parse(urlStr, [parseQueryString], [slashesDenoteHost]);
接收參數(shù):
urlStr?????????????????????????????????????? url字符串
parseQueryString?????????????????? 為true時將使用查詢模塊分析查詢字符串,默認(rèn)為false
slashesDenoteHost???????????????
默認(rèn)為false,//foo/bar 形式的字符串將被解釋成 { pathname: ‘//foo/bar' }
如果設(shè)置成true,//foo/bar 形式的字符串將被解釋成? { host: ‘foo', pathname: ‘/bar' }
Eg:
var url = require('url');
var a = url.parse('http://localhost:8080/one?a=index&t=article');
console.log(a);
//輸出結(jié)果:
{
protocol : 'http' ,
auth : null ,
host : 'localhost:8080' ,
port : '8080' ,
hostname : 'localhost' ,
hash : null ,
search : '?a=index&t=article',
query : 'a=index&t=article',
pathname : '/one',
path : '/one?a=index&t=article',
href : 'http://localhost:8080/one?a=index&t=article'
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。