一、request、response、cookie介紹和區(qū)別
十載的耿馬網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應快,48小時及時工作處理。全網(wǎng)整合營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整耿馬建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)從事“耿馬網(wǎng)站設(shè)計”,“耿馬網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。request(中文“請求”的意思):可以理解為客戶端向服務(wù)器請求的信息,就是客戶端向服務(wù)器請求時,把自己的瀏覽器信息、HTTP變量和保存在客戶端的Cookie告訴服務(wù)器,這樣服務(wù)器就可以根據(jù)這些信息判斷是誰請求的,之前有沒有請求過,對應客戶端的Session是什么等等。
response(中文“反應、響應”的意思):可以理解為服務(wù)器對客戶端請求的響應,就是服務(wù)器接收到客戶端的請求后,成生頁面信息、Cookie(發(fā)到客戶端后就保存在客戶端)等發(fā)送到客戶端。
cookie(中文“餅干”,在這里不能這樣理解了):就是保存在客戶端上的一些信息,可以用來驗證用戶信息,提高用戶響應速度等等。
response.cookie是將內(nèi)容寫入到客戶端的COOKIE里面 這個是在瀏覽器內(nèi)的!
request.cookie是將內(nèi)容從客戶端瀏覽器里面讀出來對應的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 主機地址 去掉端口號
// 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 當前匹配的路由 正則表達式
// req.params 獲取路由匹配的參數(shù)
// req.get 獲取請求header里的參數(shù)
// req.is 判斷請求的是什么類型的文件
// req.param(key名稱) 用來獲取某一個路由匹配的參數(shù)
//Response
// res.headersSent 查看http響應是否響應了http頭
// res.append(名稱,value) 追加http響應頭
// res.attachment(文件路徑) 響應文件請求
// 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('hey
');
// },
// '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') 獲取響應header數(shù)據(jù)
// res.json() 返回json數(shù)據(jù) 會自動設(shè)置響應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è)置響應header
// res.status(200) // 設(shè)置狀態(tài)碼
// res.type('') // 直接設(shè)置響應的文件類型
// 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ā)送一個事件到事件隊列。
也就是,比如讀取文件成功了,執(zhí)行后面的回調(diào)函數(shù),這個回調(diào)函數(shù)就是一個事件隊列
Node.js 里面的許多對象都會分發(fā)事件:一個 net.Server 對象會在每次有新連接時觸發(fā)一個事件, 一個 fs.readStream 對象會在文件被打開的時候觸發(fā)一個事件。 所有這些產(chǎn)生事件的對象都是 events.EventEmitter 的實例。
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)的,只要是支持事件響應的核心模塊都是 EventEmitter 的子類。
三、Node.js模塊系統(tǒng)【文件即模塊,模塊即文件】
為了讓Node.js的文件可以相互調(diào)用,Node.js提供了一個簡單的模塊系統(tǒng)。
模塊是Node.js 應用程序的基本組成部分,文件和模塊是一一對應的。
換言之,一個 Node.js 文件就是一個模塊,這個文件可能是JavaScript 代碼、JSON 或者編譯過的C/C++ 擴展
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 輸出當前執(zhí)行文件所在位置的絕對路徑
console.log(__filename); //G:\nodeWork\global\index.js
//__dirname 輸出當前執(zhí)行文件所在目錄的絕對路徑。
console.log(__dirname);
五、url.parse方法
方法說明:
講一個URL字符串轉(zhuǎn)換成對象并返回。
語法:
url.parse(urlStr, [parseQueryString], [slashesDenoteHost]);
接收參數(shù):
urlStr?????????????????????????????????????? url字符串
parseQueryString?????????????????? 為true時將使用查詢模塊分析查詢字符串,默認為false
slashesDenoteHost???????????????
默認為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'
}
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。