get,post URL加字尾請求
/**
*
* @param {*} params
*/
export function judgmentProjectDelete(id) {// 判斷是否可以刪除
let params = {}
return request({
url: `/fds-wk/basicCrowdTag/delete/before?id=${id}`,
method: 'post',
data: params
})
}
delTags(row) {
this.id = row.id
judgmentProjectDelete(row.id).then(res => {
if(res.success){
this.confirmDel()
}
}).catch(error => {
})
},
相關文章
- POST與GET請求區別
- vue 發起get請求和post請求Vue
- get請求和post請求的區別
- SpringMVC中如何傳送GET請求、POST請求、PUT請求、DELETE請求。SpringMVCdelete
- Java Http Get Post 請求工具類JavaHTTP
- go對get、post請求封裝Go封裝
- java傳送GET和post請求Java
- axios 發get,post 請求小結iOS
- get與post的請求區別
- uni-app的POST請求和GET請求APP
- file_get_contents傳送post請求
- 介面請求(get、post、head等)詳解
- 介面請求 (get、post、head 等) 詳解
- httprequest- post- get -傳送請求HTTP
- Linux curl 命令模擬 POST/GET 請求Linux
- RestTemplate exchange GET POST請求傳引數DEMOREST
- 優雅地使用GET和POST請求方法
- http請求之get和post的區別HTTP
- get和post請求的區別(面試)面試
- ajax的post或者get伺服器請求伺服器
- postman(二):使用postman傳送get or post請求Postman
- python3 實現 get 和 post 請求Python
- Python中get、post請求詳解(HTTP請求頭、狀態碼)PythonHTTP
- 4.爬蟲 requests庫講解 GET請求 POST請求 響應爬蟲
- GET和POST方式請求API介面資料返回API
- http請求中get和post方法的區別HTTP
- cURL實現傳送Get和Post請求(PHP)PHP
- vue axios資料請求get、post方法的使用VueiOS
- 原生js實現Ajax請求,包含get和postJS
- GET和POST兩種基本請求方法的區別
- 前端常見的請求資料彙總(GET POST)前端
- Http請求get與post請求方式的各種相關面試總結HTTP面試
- 都2020年了,還理不清GET請求和POST請求區別?
- spring boot請求字尾匹配的操作Spring Boot
- PHP與Curl採用的GET,POST,JSON方式請求APIPHPJSONAPI
- 網路通訊5:執行HTTP的GET/POST請求HTTP
- 淺談HTTP中GET和POST請求方式的區別HTTP
- ajax 請求的時候 get 和 post 方式的區別?