Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Ajax 发送的数据包和普通数据包之间有什么区别(在属性中source port,...)?或者当我使用 jpcap 捕获数据包时如何区分 Ajax 数据包和其他数据包?
source port
Ajax 如何发送数据包?它是由一个独特的线程吗?
AJAX 只是一个普通的 HTTP 调用。原则上,与普通浏览器请求相比,AJAX 请求绝对没有什么特别之处。
更直接地说:http://example.com/some/document.html在浏览器地址栏中键入和使用 AJAX 读取该文档没有区别。浏览器可能使用完全相同的代码在低级别运行这两个请求。相同的标头、相同的 cookie、相同的端口……
http://example.com/some/document.html