0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

axiosのdeleteでdataが送れない。

Last updated at Posted at 2020-04-17

axiosのdeleteにpostやputのようにdataを以下のように入れてみる。

const result = await axios.delete(url, data, config)

するとconfigのところにエラーが出てきました。

Expected 1-2 arguments, but got 3.

調べてみると以下のように
axiosのdeleteにはdataを入れる引数が用意されていないようです。

スクリーンショット 2020-04-17 10.44.51.png

ちゃんとした解決ではないかもですが
configの中にdataのオブジェクトを入れて送信すれば良いそうです。

スクリーンショット 2020-04-17 10.45.13.png

よって以下のようにすればいいのかな。

config.data = {sample: 'data'} // 入れたいデータ
const result = await axios.delete(url, config)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?