当前位置: 首页 > 知识库问答 >
问题:

使用AXIOS-我需要设置请求有效负载而不是表单数据-当我设置内容类型='application/x-www-form-urlencoded'时

谭翔
2023-03-14

我需要使用Axios设置请求有效载荷而不是表单数据-当我设置内容类型='application/x-www-form-urlencoded'时

当我使用Content-Type='application/json'时,我得到了400个状态码

共有1个答案

高砚
2023-03-14

在发出请求前,应根据文档设置配置。

所以:

// ES5:
const axios = require('axios');
// ES6:
import axios from 'axios';

const instance = axios.create({
  baseURL: 'http://foo.bar/endpoint',
  timeout: 1000, // Not really relevant, but was in the example
  headers: {
    'Content-Type': 'application/json'
  }
});
// Post or get...
instance.get().then(...);
 类似资料: