fetch 使用,如何能够接收JS的传值

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/huanmeng122/article/details/78504853

fetch 使用,如何能够接收JS的传值

使用fetch基本方式:

fetch('https://mywebsite.com/endpoint/', {
    method: 'POST',
    headers: { 'Accept': 'application/json', 'Content-Type': 'application/json'},
    body: JSON.stringify({ username: 'username', password: 'password'})
    }).then(function(res){
    console.log(res)
    })

方式一:增加headers 定义
在headers头部定义如下:

headers: {'Content-Type': 'application/x-www-form-urlencoded'},

同时body传值使用如下方式:

body:'username='+uname+'&password='+password

在php中使用如下接收

input('username')

方式二:改变php中接受方式

接受方式如下:

$arr = file_get_contents("php://input");

返回字符串对象,使用值需要做如下处理:

$result=array();
  foreach (explode('&', $arr) as $t){
    list($a,$b)=explode('=', $t);
    $result[$a]=$b;
  }

此时便可以如下接收传值:

$result['username']

猜你喜欢

转载自blog.csdn.net/huanmeng122/article/details/78504853
今日推荐