私はreactとreduxでプロジェクトをビルドしていますが、API
に接続できません。 私は、これを持ってAPIとの接続 - redux
componentDidMount() {
const {dispatch} = this.props;
dispatch(fetchByQuerystring());
}
とfetchByQuerystring
は次のとおりです。
export function fetchByQuerystring() {
return function(dispatch) {
return fetch(`http://my_domain.dev/api`)
.then(response => response.json())
.then(json => dispatch(receiveByQuerystring(json)));
}
}
私はそれを実行して、私はこのエラーを取得する:
Fetch API cannot load http://my-domain.dev/api . No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin ' http://localhost:3000 ' is therefore not allowed access. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
がどのように私はこの問題を解決することができますか? HTTP走る