fetch请求

Posted fm060

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fetch请求相关的知识,希望对你有一定的参考价值。

fetch post传参

  let formData = new FormData();

  formData.append(‘grant_type‘, ‘client_credentials‘);
  formData.append(‘client_id‘, ‘game-client‘);
  formData.append(‘client_secret‘, ‘0a0e2b7c0f223ff235810cbdc70f1d97‘);
  formData.append(‘scope‘, ‘game_client‘);

  fetch(‘http://www.math80.com/token‘,{method: "POST",body:formData})
  .then(function(response) {
      console.log(response)
  })
  .catch(function(){
    console.log(‘1232222‘)
  });

  

以上是关于fetch请求的主要内容,如果未能解决你的问题,请参考以下文章