91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

axios中如何寫ajax請求

發布時間:2021-07-26 09:32:45 來源:億速云 閱讀:176 作者:小新 欄目:web開發

這篇文章給大家分享的是有關axios中如何寫ajax請求的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

優點:

  • 增加一個ajax接口,只需要在配置文件里多寫幾行就可以

  • 不需要在組件中寫axios調用,直接調用api方法,很方便

  • 如果接口有調整,只需要修改一下接口配置文件就可以

  • 統一管理接口配置

1. content-type配置

// filename: content-type.js
module.exports = {
 formData: 'application/x-www-form-urlencoded; charset=UTF-8',
 json: 'application/json; charset=UTF-8'
}

2. api 配置

// filename: api-sdk-conf.js
import contentType from './content-type'
export default {
 baseURL: 'http://192.168.40.231:30412',
 apis: [
 {
  name: 'login',
  path: '/api/security/login?{{id}}',
  method: 'post',
  contentType: contentType.formData,
  status: {
  401: '用戶名或者密碼錯誤'
  }
 }
 ]
}

3. request.js 方法

// request.js
import axios from 'axios'
import qs from 'qs'
import contentType from '@/config/content-type'
import apiConf from '@/config/api-sdk-conf'
var api = {}
// render 函數用來渲染路徑上的變量, 算是一個微型的模板渲染工具
// 例如render('/{{userId}}/{{type}}/{{query}}', {userId:1,type:2, query:3})
// 會被渲染成 /1/2/3
function render (tpl, data) {
 var re = /{{([^}]+)?}}/
 var match = ''
 while ((match = re.exec(tpl))) {
 tpl = tpl.replace(match[0], data[match[1]])
 }
 return tpl
}
// fire中的this, 會動態綁定到每個接口上
function fire (query = {}, payload = '') {
 // qs 特別處理 formData類型的數據
 if (this.contentType === contentType.formData) {
 payload = qs.stringify(payload)
 } 
 // 直接返回axios實例,方便調用then,或者catch方法
 return axios({
 method: this.method,
 url: render(this.url, query),
 data: payload,
 headers: {
  contentType: this.contentType
 }
 })
}
apiConf.apis.forEach((item) => {
 api[item.name] = {
 url: apiConf.baseURL + item.path,
 method: item.method,
 status: item.status,
 contentType: item.contentType,
 fire: fire
 }
})
export default api

4. 在組件中使用

import api from '@/apis/request'
...
  api.login.fire({id: '?heiheihei'}, {
  username: 'admin',
  password: 'admin',
  namespace: '_system'
  })
...

瀏覽器結果:

Request URL:http://192.168.40.231:30412/api/security/login??heiheihei
Request Method:POST
Status Code:200 OK
Remote Address:192.168.40.231:30412
Referrer Policy:no-referrer-when-downgrade
POST /api/security/login??heiheihei HTTP/1.1
Host: 192.168.40.231:30412
Connection: keep-alive
Content-Length: 47
Accept: application/json, text/plain, */*
Origin: http://localhost:8080
contentType: application/x-www-form-urlencoded; charset=UTF-8
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36
Content-Type: application/x-www-form-urlencoded
Referer: http://localhost:8080/
Accept-Encoding: gzip, deflate
Accept-Language: zh-CN,zh;q=0.9,en;q=0.8
username=admin&password=admin&namespace=_system

5. 更多

有個地方我不是很明白,希望懂的人可以給我解答一下

如果某個組件中只需要login方法,但是我這樣寫會報錯。

import {login} from '@/apis/request'

這樣寫的前提是要在request.js最后寫上

export var login = api.login

感謝各位的閱讀!關于“axios中如何寫ajax請求”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

邮箱| 崇阳县| 阜城县| 任丘市| 收藏| 江川县| 民乐县| 东方市| 丘北县| 海丰县| 宁海县| 余姚市| 易门县| 嘉荫县| 监利县| 南和县| 南澳县| 固原市| 慈溪市| 赣州市| 长顺县| 页游| 都安| 梨树县| 凌海市| 怀化市| 祥云县| 长阳| 忻州市| 黑河市| 曲阳县| 和林格尔县| 天津市| 彰化市| 棋牌| 都江堰市| 拜城县| 枣阳市| 阳曲县| 张掖市| 利津县|