0

我正在尝试构建一个调试代理,以便在调用各种 API 时可以看到请求和响应,但是我被困在尝试将数据发送到原始方法的地方。

我怎样才能将块发送到原始方法?

var httpProxy = require('http-proxy');

var write2;

function write (chunk, encoding) {

    /*  
        error: Object #<Object> has no method '_implicitHeader'
        because write2 is not a clone.
    */
    //write2(chunk, encoding);

    if (Buffer.isBuffer(chunk)) {
        console.log(chunk.toString(encoding));
    }
}


var server = httpProxy.createServer(function (req, res, proxy) {

    // copy .write
    write2 = res.write;
    // monkey-patch .write
    res.write = write;

    proxy.proxyRequest(req, res, {
        host: req.headers.host,
        port: 80
    });

});

server.listen(8000);

我的项目在这里

4

1 回答 1

0

稍微修改JavaScript:克隆一个函数

Function.prototype.clone = function() {
    var that = this;
    var temp = function temporary() { return that.apply(this, arguments); };
    for( key in this ) {
        Object.defineProperty(temp,key,{
          get: function(){
            return that[key];
          },
          set: function(value){
            that[key] = value;
          }
        });
    }
    return temp;
};

我已将克隆分配更改为使用 getter 和 setter,以确保对克隆函数属性的任何更改都将反映在克隆对象上。

现在你可以使用 write2 = res.write.clone() 之类的东西。

还有一件事,您可能更愿意将此函数从原型分配更改为普通方法(将函数传递给克隆),这可能会使您的设计更加简洁。

于 2012-07-10T11:40:06.310 回答