jquery Ajax call - data parameters are not being passed to MVC Controller action

后端 未结 5 1463
粉色の甜心
粉色の甜心 2020-12-08 02:31

I\'m passing two string parameters from a jQuery ajax call to an MVC controller method, expecting a json response back. I can see that the parameters are populated on the cl

5条回答
  •  北海茫月
    2020-12-08 03:03

    If you have trouble with caching ajax you can turn it off:

    $.ajaxSetup({cache: false});
    

提交回复
热议问题