0
有誰知道如何實現connect/express中使用的函數鏈。因此,人們可以做到這一點..NodeJS Connect/Express app.use處理
var app = {}, app.stack = [];
app.use(function(r, s, n){
// dosomething
})
require('http').createServer(function(r, s){
// execute functions in app stack
})
您想重新創建Connect/Express的中間件堆棧嗎?如果是這樣:爲什麼? – robertklep
教育。那func鏈似乎是一個有用的模式.. –
那麼,一個好的起點是['connect/lib/proto.js'](https://github.com/senchalabs/connect/blob/master/lib/proto。 js),其中'use'和'handle'被實現。 – robertklep