有没有办法通过javascript拦截flash对象发出的ajax http请求的响应?
我想拦截通过 javascript 在 flash 对象内发出的 ajax 请求的响应。是否可以?
I want want to intercept the response for an ajax request made inside a flash object via javascript. Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你的意思是调试,是的,你可以。 Firefox 扩展 Firebug Firebug 网站 将向您显示连接。
对于 Windows,Fiddler (Fiddler 网站) 也会这样做。
If you mean for debugging, yes you can. Firefox extension Firebug Firebug website will show you the connection.
For windows, Fiddler (Fiddler Website) will do it too.
在 Mozilla Firefox 中,安装插件“Firebug”和“Flash firebug”。
安装完成后,打开firebug并点击“Net”选项卡,选择“All”。
您将看到向服务器发出的所有请求的请求及其响应。
In Mozilla Firefox, install addons "Firebug" and "Flash firebug".
After installation, open firebug and click on "Net" tab, select "All".
You will see the requests as well as their responses for all the requests made to the server.
Firebug 是跟踪 HTTP 请求和响应(包括 Ajax)的不错选择。
如果您更喜欢原始数据包,wireshark 是另一个选择,但需要更多有关网络协议的知识。
Firebug is a good choice to trace HTTP requests and responses, including Ajax.
If you prefer raw packets, wireshark is another choice, but requires more knowledge about network protocols.