主頁 > 知識庫 > Ajax調(diào)用restful接口傳送Json格式數(shù)據(jù)的方法

Ajax調(diào)用restful接口傳送Json格式數(shù)據(jù)的方法

熱門標簽:硅語電話機器人公司 云呼外撥網(wǎng)絡電話系統(tǒng) 騰訊地圖標注位置能用多久 越南河內(nèi)地圖標注 個人怎樣在百度地圖標注地名 地圖標注項目怎么樣 ai機器人電銷資源 機器人電銷騙局揭秘 超級大富翁地圖標注

ajax傳送json格式數(shù)據(jù),關(guān)鍵是指定contentType,data要是json格式

如果是restful接口,把type改成對應的post(增)、delete(刪)、put(改)、get(查)即可

var post_data={"name":"test001","pass":"xxxx"}; 
$.ajax({ 
  url: "http://192.168.10.111:8080/uc/login", 
  type: 'post', 
  contentType: "application/json; charset=utf-8", 
  data:JSON.stringify(post_data), 
  success:function (data) { 
    //調(diào)用成功 
  }, 
  error: function(data, textStatus, errorThrown){ 
    //調(diào)用失敗 
  } 
}); 

以上所述是小編給大家介紹的Ajax調(diào)用restful接口傳送Json格式數(shù)據(jù)的方法的全部敘述,希望對大家有所幫助,如果大家想了解更多內(nèi)容敬請關(guān)注腳本之家網(wǎng)站!

您可能感興趣的文章:
  • SpringMVC Restful api接口實現(xiàn)的代碼
  • 基于Restful接口調(diào)用方法總結(jié)(超詳細)
  • PHP編寫RESTful接口
  • php基于curl擴展制作跨平臺的restfule 接口
  • 在Python的框架中為MySQL實現(xiàn)restful接口的教程
  • 高性能web服務器框架Tornado簡單實現(xiàn)restful接口及開發(fā)實例
  • 深入淺析Restful接口的兩種使用方式

標簽:遼源 鄭州 林芝 邢臺 舟山 海南 內(nèi)蒙古 洛陽

巨人網(wǎng)絡通訊聲明:本文標題《Ajax調(diào)用restful接口傳送Json格式數(shù)據(jù)的方法》,本文關(guān)鍵詞  Ajax,調(diào)用,restful,接口,傳送,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Ajax調(diào)用restful接口傳送Json格式數(shù)據(jù)的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于Ajax調(diào)用restful接口傳送Json格式數(shù)據(jù)的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章