這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)怎么在angularjs中利用$http調(diào)用接口,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
成都創(chuàng)新互聯(lián)是專業(yè)的潮安網(wǎng)站建設(shè)公司,潮安接單;提供成都做網(wǎng)站、成都網(wǎng)站制作,網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行潮安網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!
如下所示:
$http.get("/merchantmall/merchant.json") .success(function(data, status, headers, config) { console.log(arguments); }) .error(function(data, status, headers, config) { console.log(arguments); })
$http({url: "/merchantmall/merchant.json", }) .success(function(data, status, headers, config) { console.log(arguments); }) .error(function(data, status, headers, config) { console.log(arguments); })
var promise = $http({ method: 'GET', url: '/api/users.json' }); promise.then(function(resp) { // resp是一個(gè)響應(yīng)對(duì)象 }, function(resp) { // 帶有錯(cuò)誤信息的resp });
var promise = $http({ method: 'GET', url: '/api/users.json' }); promise.success(function(data, status, headers, config) { // 處理成功的響應(yīng) }); promise.error(function(data, status, headers, config) { // 處理非成功的響應(yīng) });
上述就是小編為大家分享的怎么在angularjs中利用$http調(diào)用接口了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。