我正在尝试通过在接收“http-on-modify-request”通知时向流通道注册流侦听器来获取http对象内容/正文。
var newListener = new TracingListener(this);
subject.QueryInterface(Ci.nsITraceableChannel);
newListener.originalListener = subject.setNewListener(newListener);
对于普通对象而言,这一点很顺利,但重定向对象 我检查了一个firebug https://bugzilla.mozilla.org/show_bug.cgi?id=529536的问题,它表明监听器将被移动到重定向的对象。因此,OnDataAvailable将不会调用原始重定向对象。
那么有没有办法通过其他方式获取重定向对象内容/正文? 任何建议将不胜感激。