“lulus kueri params untuk menghapus axios” Kode Jawaban

Axios menghapus muatan permintaan

//instead of
axios.put(url, { foo: "bar" });

//wrap the data in the data propery of a new object
axios.delete(url, { data: { foo: "bar" } });
Sleep Overflow

lulus kueri params untuk menghapus axios

async deleteParty(inputData){
        const params = { 
            query: mutation.deleteParty, 
        };
        try{
            const res= await pkgaxios({
                url: url,
                method: 'delete',
                headers: {
                    'x-api-key': api_key,
                  },
              params:params,
                  input:{ name: inputData.name, 
                    orgid:inputData.orgid}
                   
                
                             
            }).then(function (response) {
                console.log(JSON.stringify(response.data),"deleted party");
            });
       
        }catch(e){
            console.log(e);
        }

    }
Prashan Methsara

Jawaban yang mirip dengan “lulus kueri params untuk menghapus axios”

Pertanyaan yang mirip dengan “lulus kueri params untuk menghapus axios”

Lebih banyak jawaban terkait untuk “lulus kueri params untuk menghapus axios” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya