您好,登錄后才能下訂單哦!
一、request、response、cookie介紹和區別
request(中文“請求”的意思):可以理解為客戶端向服務器請求的信息,就是客戶端向服務器請求時,把自己的瀏覽器信息、HTTP變量和保存在客戶端的Cookie告訴服務器,這樣服務器就可以根據這些信息判斷是誰請求的,之前有沒有請求過,對應客戶端的Session是什么等等。
response(中文“反應、響應”的意思):可以理解為服務器對客戶端請求的響應,就是服務器接收到客戶端的請求后,成生頁面信息、Cookie(發到客戶端后就保存在客戶端)等發送到客戶端。
cookie(中文“餅干”,在這里不能這樣理解了):就是保存在客戶端上的一些信息,可以用來驗證用戶信息,提高用戶響應速度等等。
response.cookie是將內容寫入到客戶端的COOKIE里面 這個是在瀏覽器內的!
request.cookie是將內容從客戶端瀏覽器里面讀出來對應的COOKIE內容!
從請求中獲取cookie就用Request.Cookies,
要給客戶端寫cookie就用Response.Cookies
二、express模塊中的req,res參數的常用屬性方法
const express = require('express');
const router = express.Router()
router.get('/',(req,res)=>{
// Request
// req.baseUrl 基礎路由地址
// req.body post發送的數據解析出來的對象
// req.cookies 客戶端發送的cookies數據
// req.hostname 主機地址 去掉端口號
// req.ip 查看客戶端的ip地址
// req.ips 代理的IP地址
// req.originalUrl 對req.url的一個備份
// req.params 在使用/:id/:name 匹配params
// req.path 包含請求URL的路徑部分
// req.protocol http 或https協議
// req.query 查詢字符串解析出來的對象 username=zhangsan&password=123 { username:zhangsan }
// req.route 當前匹配的路由 正則表達式
// req.params 獲取路由匹配的參數
// req.get 獲取請求header里的參數
// req.is 判斷請求的是什么類型的文件
// req.param(key名稱) 用來獲取某一個路由匹配的參數
//Response
// res.headersSent 查看http響應是否響應了http頭
// res.append(名稱,value) 追加http響應頭
// res.attachment(文件路徑) 響應文件請求
// res.cookie() 設置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') 設置cookie
// res.cookie('zhangsan1','lisi2',{
// maxAge:900000,
// httpOnly:true,
// path: '/admin',
// secure: true,
// signed:true
// })
// res.clearCookie('zhangsan')
// res.download(文件的path路徑) 跟attachment類似 用來處理文件下載的 參數是文件地址
// res.end http模塊自帶的
// res.format()協商請求文件類型 format匹配協商的文件類型
// 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') 獲取響應header數據
// res.json() 返回json數據 會自動設置響應header Content-type 為json格式 application/json
// res.json({
// xx:100
// })
// res.json({
// xx:100
// })
// jsonp 利用的就是瀏覽器加載其他服務器的文件不會存在跨域問題
// 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})
// 重定向 把訪問的地址跳轉到另一個地址上
// res.redirect(301,'/api/aes')
// express jade
// res.render('index',{title:"hehe",test:"23"})
// res.send('') 發送數據 可以是任意類型的數據
// res.sendFile() 發送文件的
// res.sendStatus(200) 設置發送時的狀態碼
// res.set('Content-Type', 'text/plain') //設置響應header
// res.status(200) // 設置狀態碼
// res.type('') // 直接設置響應的文件類型
// 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 操作在完成時都會發送一個事件到事件隊列。
也就是,比如讀取文件成功了,執行后面的回調函數,這個回調函數就是一個事件隊列
Node.js 里面的許多對象都會分發事件:一個 net.Server 對象會在每次有新連接時觸發一個事件, 一個 fs.readStream 對象會在文件被打開的時候觸發一個事件。 所有這些產生事件的對象都是 events.EventEmitter 的實例。
EventEmitter 類
events 模塊只提供了一個對象: events.EventEmitter。EventEmitter 的核心就是事件觸發與事件監聽器功能的封裝
使用該對象前,先通過require("events");來訪問該模塊。
//引入事件模塊
var events = require('events');
//創建EventEmitter對象
var eventEmitter = new events.EventEmitter();
//創建事件處理程序
var connectHandle = function () {
console.log('連接成功!')
}
// 綁定事件及事件的處理程序
eventEmitter.on('connect',connectHandle)
//觸發事件
eventEmitter.emit('connect')
//結果 輸出:連接成功!
PS.大多數時候我們不會直接使用 EventEmitter,而是在對象中繼承它。包括 fs、net、 http 在內的,只要是支持事件響應的核心模塊都是 EventEmitter 的子類。
三、Node.js模塊系統【文件即模塊,模塊即文件】
為了讓Node.js的文件可以相互調用,Node.js提供了一個簡單的模塊系統。
模塊是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 輸出當前執行文件所在位置的絕對路徑
console.log(__filename); //G:\nodeWork\global\index.js
//__dirname 輸出當前執行文件所在目錄的絕對路徑。
console.log(__dirname);
五、url.parse方法
方法說明:
講一個URL字符串轉換成對象并返回。
語法:
url.parse(urlStr, [parseQueryString], [slashesDenoteHost]);
接收參數:
urlStr?????????????????????????????????????? url字符串
parseQueryString?????????????????? 為true時將使用查詢模塊分析查詢字符串,默認為false
slashesDenoteHost???????????????
默認為false,//foo/bar 形式的字符串將被解釋成 { pathname: ‘//foo/bar' }
如果設置成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);
//輸出結果:
{
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'
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。