0
我有一個自定義的網絡服務器,它解析HTTP請求,包括多部分形式的數據。uploadify:HTTP請求發送到後端
在以下的情況下,東西也不錯:
<FORM method = "POST" action = "#" enctype multipart form-data multiple>
<INPUT type = "file"/>
<INPUT type = "submit"/>
</FORM>
以上的HTML文件發送請求,看起來像:
POST/HTTP/1.1
Host: 192.168.1.2:8888
User-Agent: Shockwave Flash
Connection: Keep-Alive
Cache-Control: no-cache
Accept: text/*
Content-Length: 884
Content-Type: multipart/form-data; boundary=----------------------------1193f8fd031d
img 1
----------------------------1193f8fd031d
img 2
----------------------------1193f8fd031d--
在我使用uploadify按照其docs情況下,我DONOT得到類似HTTP請求在後端。
如何查看uploadify發送的HTTP請求?