Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cors.jsのエラー処理がおかしい #6

Open
munierujp opened this issue Jun 14, 2018 · 1 comment
Open

cors.jsのエラー処理がおかしい #6

munierujp opened this issue Jun 14, 2018 · 1 comment

Comments

@munierujp
Copy link

munierujp commented Jun 14, 2018

Qiita APIの利用制限を超過しているとき、以下のようなレスポンスが返ってきます。

{"message":"Rate limit exceeded","type":"rate_limit_exceeded"}

cors.jsファイル内で以下のような記述がありますが、上記の場合result.errorは存在しないので、
コンソールにUncaught undefinedというエラーメッセージが表示されます。

const result = JSON.parse(request.response);
if (request.status < 200 || request.status >= 300) {
  throw result.error;
}

こんな感じにするといいのではないかと思います。

const result = JSON.parse(request.response);
if (request.status < 200 || request.status >= 300) {
  throw new Error(result.error || 'response error');
}
@sensuikan1973
Copy link

この件対応していただけると幸いです

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants