csdnceshi62 2010-05-16 21:01 采纳率: 100%
浏览 386
已采纳

Jquery-How to make $. 使用 contentType 应用程序 / json?

I've noticed that when using $.post() in jquery that the default contentType is application/x-www-form-urlencoded - when my asp.net mvc code needs to have contentType=application/json

(See this question for why I must use application/json: ASPNET MVC - Why is ModelState.IsValid false "The x field is required" when that field does have a value?)

How can I make $.post() send contentType=application/json? I already have a large number of $.post() functions, so I don't want to change to $.ajax() because it would take too much time

If I try

$.post(url, data, function(), "json") 

It still has contentType=application/x-www-form-urlencoded. So what exactly does the "json" param do if it does not change the contenttype to json?

If I try

$.ajaxSetup({
  contentType: "application/json; charset=utf-8"
});

That works but affects every single $.get and $.post that I have and causes some to break.

So is there some way that I can change the behavior of $.post() to send contentType=application/json?

转载于:https://stackoverflow.com/questions/2845459/jquery-how-to-make-post-use-contenttype-application-json

  • 写回答

15条回答 默认 最新

  • 旧行李 2010-05-16 21:05
    关注

    I think you may have to

    1.Modify the source to make $.post always use JSON data type as it really is just a shortcut for a pre configured $.ajax call

    Or

    2.Define your own utility function that is a shortcut for the $.ajax configuration you want to use

    Or

    3.You could overwrite the $.post function with your own implementation via monkey patching.

    The JSON datatype in your example refers to the datatype returned from the server and not the format sent to the server.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(14条)

报告相同问题?

悬赏问题

  • ¥15 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable