0

ネットワークを監視するプログラムを作成しています。このプログラムでは、ネットワークを通過する HTTP トラフィックを読み取ります。私がやりたいことの 1 つは、AJAX HTTP トラフィックを「通常の」HTTP トラフィックから分離することです。そのようなことは可能ですか?リクエストがAJAXリクエストであるかどうかを示す何かがHTTPヘッダーにあるのでしょうか?

4

1 に答える 1

0

There is the X-Requested-With header that most frameworks set when making AJAX requests. It looks like this:

X-Requested-With: XMLHttpRequest

There are no guarantees (obviously the headers are under the client's complete control), but usually it's there.

于 2013-05-10T22:46:43.350 に答える