1、koa 核心:use方法和ctx的方法
ctx.req.url=ctx.request.req.url=ctx.request.url=ctx.url 通過req做了中轉
中**通過自己的request上的屬性,可以重新擴充套件屬性。
context 上下文 req,res 原生的,request,response koa 自己封裝的物件,基於req,res來封裝的 => context 。
const koa=require('./koa');
// 需要先例項化乙個koa的例項
// middleware 中介軟體
// context 上下文 req,res 原生的,request,response koa 自己封裝的物件,基於req,res來封裝的 => context 。
console.log(ctx.req.url); //pathname
console.log(ctx.request.req.url);
//中轉 通過自己的request上的屬性,可以重新擴充套件屬性,
console.log(ctx.request.url);
console.log(ctx.path,'------');
/* res.end(json.stringify()); */
//throw new error('error');
});// vm.***=>vm.$data.***;
/* object.defineproperties('vm','***',
}) */
console.log('server start 3000');
})//監控錯誤
console.log(err,'-------');
}) */
// koa 核心:use方法和ctx的方法
PHP中的檔案操作常用方法
php中的檔案操作常用方法 以追加方式寫入檔案 寫之前先判斷能否開啟,鎖定後再寫入,寫完後釋放鎖,關閉檔案。param unknown type file param unknown type data function write file file,data lock nb,排它型鎖定 if f...
jQuery中的操作節點常用的方法
我這裡的 this 是代表當前物件 需求方法 獲取第乙個父元素 無法獲取多級父元素 this parent 獲取指定父及元素 this parents classname 獲取所有的兄弟元素 可傳參獲取指定的兄弟元素 不包含自身 this siblings 獲取指定子元素 通過傳參獲取指定的子元素 ...
VBA中操作Excel常用方法總結
要用vba來關閉工作簿,用workbook.close 方法即可,而要退出excel,則用application.quit 方法。下面是一些 示例 關閉活動工作簿,如果工作簿有更改,提示是否儲存 複製 如下 sub closeworkbook activeworkbook.close end sub...