angular 中使用 axios 发起 http 请求

Posted monkey-k

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angular 中使用 axios 发起 http 请求相关的知识,希望对你有一定的参考价值。

angular 中使用 axios

/**
 * 在angular 中引入第三方 http 模块的使用, 以 axios 为例
 * 有两种使用方法:(本文使用Promise简单封装)
 * 一. 直接在要使用请求的组件中 import axios from ‘axios‘, 调用: axios.get/ axios.post ...
 * 二. 封装成服务: 
 *          1. 引入 axios: import axios from ‘axios‘
 *          2. 用 promise rxjs 回调函数 3 种方式任选其一进行封装
 */

 

1. axios.service.ts中

import  Injectable  from ‘@angular/core‘;
import axios from ‘axios‘
@Injectable(
  providedIn: ‘root‘
)
export class AxiosService 
  constructor()  
  AxiosGet(api
    return new Promise((resolvereject)=>
      axios.get(api).then((res)=>
        resolve(res)
      )
    )
  

2. 根模块中注入:

import  AxiosService  from ‘../service/axios.service‘

 

providers: [AxiosService]

 

3. 组件中使用:

// 引入服务
import  AxiosService  from ‘../../service/axios.service‘
@Component(
  selector: ‘app-news‘,
  templateUrl: ‘./news.component.html,
  styleUrls: [‘./news.component.css‘]
)
export class NewsComponent implements OnInit 
  public newsList: any[]
  constructor(public $axios: AxiosService)  
  ngOnInit() 
  
  axiosGetData() 
    let url = ‘/search/interface/getrelatequery?word=%E6%99%8B%E6%B1%9F‘
    this.$axios.AxiosGet(url).then((data)=>
      console.log("axios GET 请求: "data)
    )
  
 

 

以上是关于angular 中使用 axios 发起 http 请求的主要内容,如果未能解决你的问题,请参考以下文章

axios配置及使用(发起请求时带上token)

Angular http post 请求失败,但 axios 1 有效

js axios发起get请求

为什么axios请求接口会发起两次请求

Vue-cli webpack 设置Axios发起请求统一前缀的路径(设置统一请求地址)(发起GET请求,发起POST请求,发起PUT请求,发起DELETE请求)

axios