黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

$.ajax中contentType: “application/json” 的用法詳解

具體內(nèi)容如下所示:

$.ajax({
  type: httpmethod,
  cache:false,
  async:false,
  contenttype: "application/json; charset=utf-8",
  datatype: "json",//返回值類型
  url: path+url,
  data:jsondata,
  success: function(data){
    var resultdata = '返回碼='+data.status+',響應(yīng)結(jié)果='+data.message+',耗時='+data.tcost;
    layer.msg(resultdata,{icon: 1});
  },
  error : function(xhr, ts, et) {
    layer.msg('服務(wù)調(diào)用失敗!', {icon: 2});
  }
});

區(qū)分:

contenttype: 發(fā)送信息至服務(wù)器時內(nèi)容編碼類型,簡單說告訴服務(wù)器請求類型的數(shù)據(jù)

 默認值: "application/x-www-form-urlencoded"

datatype:告訴服務(wù)器,我要想什么類型的數(shù)據(jù),除了常見的json、xml,還可以指定 html、jsonp、script或者text

不使用contenttype: “application/json”則data可以是對象

$.ajax({
url: actionurl,
type: "post",
dattype: "json",
data: { id: nodeid },
async: false,
success: function () {}
});

使用contenttype: “application/json”則data只能是json字符串

$.ajax({
url: actionurl,
type: "post",
dattype: "json",
contenttype: "application/json"
data: "{'id': " + nodeid +"}",
async: false,
success: function () {}
});

總結(jié)

以上所述是小編給大家介紹的$.ajax中contenttype: “application/json” 的用法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對碩編程網(wǎng)站的支持!

相關(guān)文章