在 Axios 中,当你需要转达数组参数时,可以使用以下几种方式举行格式化:
- 使用 paramsSerializer 将数组转换为逗号分隔的字符串:
- import axios from 'axios';
- import qs from 'qs';
- const arrayParams = ['param1', 'param2', 'param3'];
- axios.get('https://api.example.com/endpoint', {
- params: { array: arrayParams },
- paramsSerializer: (params) => qs.stringify(params, { arrayFormat: 'comma' }),
- })
- .then((response) => console.log(response))
- .catch((error) => console.error(error));
复制代码 这将发送一个雷同于以下的请求: https://api.example.com/endpoint?array=param1,param2,param3
- 使用 indices 格式(默认行为):
- axios.get('https://api.example.com/endpoint', {
- params: { array: arrayParams },
- })
- .then((response) => console.log(response))
- .catch((error) => console.error(error));
复制代码 这将发送一个雷同于以下的请求: https://api.example.com/endpoint?array[0]=param1&array[1]=param2&array[2]=param3
- 使用 brackets 格式:
- axios.get('https://api.example.com/endpoint', {
- params: { array: arrayParams },
- paramsSerializer: (params) => qs.stringify(params, { arrayFormat: 'brackets' }),
- })
- .then((response) => console.log(response))
- .catch((error) => console.error(error));
复制代码 这将发送一个雷同于以下的请求: https://api.example.com/endpoint?array[]=param1&array[]=param2&array[]=param3
- 使用 repeat 格式:
- axios.get('https://api.example.com/endpoint', {
- params: { array: arrayParams },
- paramsSerializer: (params) => qs.stringify(params, { arrayFormat: 'repeat' }),
- })
- .then((response) => console.log(response))
- .catch((error) => console.error(error));
复制代码 这将发送一个雷同于以下的请求: https://api.example.com/endpoint?array=param1&array=param2&array=param3
注意,使用 paramsSerializer 需要安装并导入 qs 库。你可以使用以下命令安装它:
或
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |