web-dev-qa-db-ja.com

withCredentialsを新しいES6組み込みHTTPリクエストAPIに設定:Fetch

設定方法withCredentials=true to fetch これは約束を返します。次は正しいですか?

fetch(url,{
   method:'post',
   headers,
   withCredentials: true
});

私は MDNドキュメント がこの点を除いてhttp-requestingに関するすべてについて話し合ったと思います:withCredentials

16
Abdennour TOUMI

わかった ここ

  credentials: 'include'

ではなく

  withCredentials: true
43
Abdennour TOUMI