Node Koa2 常用請求API

2021-09-26 03:34:45 字數 1214 閱讀 7130

request.header

請求標頭物件。

request.method

請求方法。

request.url

獲取請求 url.

request.origin

獲取url的**,包括 protocol 和 host。

比如:http://localhost:3000/index 返回 http://localhost:3000

request.originalurl

獲取請求原始url。

比如:http://localhost:3000/index 返回 /index

request.href

獲取完整的請求url,包括 protocol,host 和 url。

比如:http://localhost:3000/index 返回 http://localhost:3000/index

request.path

獲取路徑

比如:http://localhost:3000/index 返回 /index

request.querystring

根據 ? 獲取原始查詢字串.

比如:http://localhost:3000/index?w=123 返回 w=123

request.query

根據 ? 獲取原始查詢字串.

比如:http://localhost:3000/index?w=123 返回

request.search

使用 ? 獲取原始查詢字串。

比如:http://localhost:3000/index?w=123 返回 ?w=123

request.host

返回主機名字

比如:http://localhost:3000/index?w=123 返回localhost:3000

request.protocol

返回協議名字

比如:http://localhost:3000/index?w=123 返回http

node koa2 玩起來都是中介軟體啊

玩的我想吐 整理下常用的中介軟體吧 先列在這有空把這些中介軟體的使用技巧也寫出來分享一下 koa router 路由中介軟體 koa bodyparser post資料處理的中介軟體 koa strict 靜態資源管理的中介軟體 koa2 模板引擎 ejs koa views 頁面渲染相關的中介軟體...

常用ajax請求

jquery版本的ajax請求 包括處理webservice中xml字串 1 ajax 10 error function 13 datatype html 14 js版本的ajax請求 common.js 由於瀏覽器版本不同影響ajax不同,所以遇到不同的版本需要new不同的ajax 建立乙個aj...

http常用請求頭

通用字段 作用cache control 控制快取的行為 connection 瀏覽器想要優先使用的連線型別,比如 keep alive date 建立報文時間 pragma 報文指令 via 伺服器相關資訊 transfer encoding 傳輸編碼方式 upgrade 要求客戶端公升級協議 w...