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

(React)npm start起動時のCORS回避

Last updated at Posted at 2020-12-06

前提

フロントエンド - React.js
バックエンド - Go

問題

npm startでサーバを起動した際、React App内で外部APIをfetchすると、CORSエラーが発生する。

すでに行った対処(参考にした記事)

  • fetchの第二変数に{mode: 'cors'}を追加する。
  • GoのResponse Headerにw.Header().Set("Access-Control-Allow-Origin", "*")を追加。

この二つの対処では、CORSエラーは解消されなかった。

解決法

(ここに書いてあった。プロキシを挟むと良い。)

ブラウザからのAPIの送り先がlocalhost:4000の場合は、React Appのpackage.jsonに、
"proxy": "http://localhost:4000",
と追加で記述すると良い。

fetchでlocalhost:4000/apiにリクエストを投げたい時は、
fetch("/api", {mode: 'cors'}).then....
と書く。

0
1
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
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?