JQuery - $.ajax POST does not send .data to web server

后端 未结 5 899
你的背包
你的背包 2021-01-17 18:31

I am using the JQuery $.ajax post command to invoke an ajax event on my web server:

var formParams = \"fe1=y&fe2=m&fe3=m\";

$.ajax({
    type: \'POS         


        
5条回答
  •  时光取名叫无心
    2021-01-17 18:55

    The cause of the problem was found using FireBug and opening the opening the Net gadget.

    I'm seeing that the web server is responding with a status 302 on the call to the web page.

    Expanding upon the 302 request in Firebug/Net, and examining the Params, Headers, Response, and HTML quickly identified that it was an application specific issue originating on the server.

    Thanks for everyone's feedback

提交回复
热议问题