5
1

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 5 years have passed since last update.

【解決策】axiosでPOSTがGETになってしまう

Last updated at Posted at 2019-08-16

概要

以下のようにaxiosを使ってPOSTしようとすると、GETメソッドが走って404エラーが出てしまいました。

axios({
  method: image.id ? 'PUT' : 'POST',
  url: `/hoge/${image.id}`
})

原因

どうやらURLの末尾に/(スラッシュ)が付いていると、POSTしようとしてもGETメソッドが走ってしまう不具合があるようです。

【追記: 2019年8月16日】
不具合ではなくスラッシュがないURLにリダイレクトしようとしているだけでした。コメントでのご指摘ありがとうございました。

今回の例だと、POSTメソッドのときはimage.idがnullなので、URLが/hoge/となっていたんですね。

解決策

じゃあ末尾スラッシュをなくせばええやん!ということでコードをサクッと直し解決しました。

let url = '/hoge'
if (model.id) url += `/${image.id}`
axios({
  method: image.id ? 'PUT' : 'POST',
  url: url
})
5
1
2

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
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?