3
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 1 year has passed since last update.

jQueryのAJAX通信でリクエストヘッダ送る際の備忘録

Last updated at Posted at 2022-02-28

タイトル通り、jQueryのAJAX通信でAPIに対してリクエストヘッダに値を設定して送る時の備忘録です。
基本的にはheadersに値を設定して送る事になると思います。
記述例としては以下のような感じ。

var _data = JSON.stringify({});
$.ajax({
  url: '[APIのURL]',
  headers: {
    '[送信したい値のkey名]' : '[送信したい値]',
  },
  type: 'POST',
  contentType:'application/json; charset=utf-8',
  data: _data,
  dataType: 'json',
  crossDomain: true,
  cache: false,
  xhrFields: {
    withCredentials: true
  }
});

注意点としては、送るのがリクエストヘッダだけで送るデータがなかったとしても
空のデータをJSON化してdataに指定して送っておかないと400エラーが出ます。
※PHPのエラーには「Required request body is missing: public java.lang.String」といった感じのものが出る。

3
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
3
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?