主頁 > 知識庫 > 基于apicloudAJAX請求代碼合集

基于apicloudAJAX請求代碼合集

熱門標簽:上海企業(yè)外呼系統(tǒng)價錢 地圖標注推銷坑人 東平縣地圖標注app 怎樣在地圖標注文字 立陶宛地圖標注 電銷機器人 長春 大眾點評400電話怎么申請 中國地圖標注不明確情況介紹表 河間市地圖標注app

get請求代碼:

api.ajax({
url:'http://m.weather.com.cn/data/101010100.html' //天氣預報網站的WebService接口
},function(ret,err){
if (ret) {
api.alert({msg:JSON.stringify(ret)});
} else {
api.alert({msg:JSON.stringify(err)});
};
});

POST請求-Form表單提交:

api.ajax({
url: 'http://www.xxx.com/path/form',
method: 'post',
dataType: 'text', //該參數(shù)若不傳,則默認為json
data: {
values:{name: 'devlp', password: '123456'} //鍵值對
}
},function(ret,err){
if (ret) {
api.alert({msg:JSON.stringify(ret)});
} else {
api.alert({msg:JSON.stringify(err)});
};
});

POST請求-單個/多個文件,文件組上傳:

api.ajax({
url: 'http://www.xxx.com/path/upLoad',
method: 'post',
data: {
files:{myfile: 'filepath'}
// filepath來自ios或者Android的文件系統(tǒng)中的任意文件??稍O置多個文件,甚至是文件數(shù)組,如files:{myfile: 'filepath', myfile1: 'filepath1'}或者files:{'myfile[]': ['filepath', 'filepath1']}等
}
},function(ret,err){
if (ret) {
api.alert({msg:JSON.stringify(ret)});
} else {
api.alert({msg:JSON.stringify(err)});
};
});

POST請求-提交二進制流:

api.ajax({
url: 'http://www.xxx.com/path/body',
method: 'post',
data: {
body:'textbits'
}
},function(ret,err){
if (ret) {
api.alert({msg:JSON.stringify(ret)});
} else {
api.alert({msg:JSON.stringify(err)});
};
});

POST請求-提交文件流:

api.ajax({
url: 'http://www.xxx.com/path/body',
method: 'post',
data: {
stream:'filepath'
// filepath來自ios或者Android的文件系統(tǒng)中的任意文件
}
},function(ret,err){
if (ret) {
api.alert({msg:JSON.stringify(ret)});
} else {
api.alert({msg:JSON.stringify(err)});
};
});

POST請求-Multipart-Data,文件和文本字段一起提交:

api.ajax({
url: 'http://www.xxx.com/path/multipart',
method: 'post',
data: {
values:{name: 'devlp', password: '123456'},
files:{file: 'fs://test.png'}
}
},function(ret,err){
if (ret) {
api.alert({msg:JSON.stringify(ret)});
} else {
api.alert({msg:JSON.stringify(err)});
};
});

POST請求-顯示上傳進度:

api.ajax({
url: 'http://www.xxx.com/path/multipart',
method: 'post',
report: true,
data: {
values:{name: 'devlp', password: '123456'},
files:{file: 'fs://test.png'}
}
},function(ret,err){
if(ret){
if(0 == ret.status){
//loading('進度:' + ret.progress);
}else{
api.alert({msg:'上傳成功:\n' + JSON.stringify(ret)});
}
}else{
api.alert({msg:JSON.stringify(err)});
}
});

【端API使用api.ajax讀取接口數(shù)據】

!DOCTYPE HTML>
html>
head>
meta charset="utf-8">
meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0"/>
title>test/title>
/head>
body>
button onclick="showPersonInfo()">點我獲取數(shù)據/button>
/body>
script type="text/javascript" src="../script/api.js">/script>
script>
function showPersonInfo(){
api.showProgress();//顯示加載進度框
//使用api.ajax請求數(shù)據,具體使用方法和參數(shù)請看官方文檔,這里使用get方法演示
api.ajax({
url:'http://192.168.0.10/get.php',//如果地址訪問不到會請求出錯,請?zhí)顚懽约旱慕涌诘刂?
method:'get',
cache:'false',
timeout:30,
dataTpye:'json',
},function(ret,err){
api.hideProgress();//隱藏加載進度框
if(ret){
for(var i=0;iret.length;i++){
var html='br>'+'ID:'+ret[i].id+'br>'+'姓名:'+ret[i].name+'br>'+'性別:'+ret[i].sex+'br>'+'年齡'+ret[i].age; 
document.write(html);
}
}else{
api.alert({msg:('錯誤碼:'+err.code+';錯誤信息:'+err.msg+'網絡狀態(tài)碼:'+err.statusCode)});
}
});
}
/script>
/html>

以上這篇基于apicloudAJAX請求代碼合集就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • DCloud的native.js調用系統(tǒng)分享實例Android版代碼

標簽:益陽 本溪 銅川 營口 內江 遼寧 玉樹 四川

巨人網絡通訊聲明:本文標題《基于apicloudAJAX請求代碼合集》,本文關鍵詞  基于,apicloudAJAX,請求,代碼,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《基于apicloudAJAX請求代碼合集》相關的同類信息!
  • 本頁收集關于基于apicloudAJAX請求代碼合集的相關信息資訊供網民參考!
  • 推薦文章