Axios delete API & FormData All In One
Axios delete API & FormData All In One
import axios from '@/utils/http.js';
export default {
addComments (params = {}) {
if (params.id) {
return axios.put('/api/com/comments', params);
}
// JSON ✅ `object`
return axios.post('/api/com/comments', params);
},
getCommentsDetail (params = {}) {
// QueryString ✅ `{ object}`
return axios.get('/api/comment_data', { params });
},
deleteComments (params = {}) {
// FormData ✅ `{data: object}`
return axios.delete('/api/comments', { data: params });
}
};
https://github.com/axios/axios
refs
https://stackoverflow.com/questions/51069552/axios-delete-request-with-body-and-headers
https://www.cnblogs.com/xgqfrms/tag/URLSearchParams/
https://www.cnblogs.com/xgqfrms/p/12523267.html
©xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/15930870.html
未经授权禁止转载,违者必究!