当前位置: 移动技术网 > IT编程>开发语言>JavaScript > fetch 使用及如何接收JS传值

fetch 使用及如何接收JS传值

2017年12月01日  | 移动技术网IT编程  | 我要评论

使用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']

总结

以上所述是小编给大家介绍的fetch 使用及如何接收js传值,希望对大家有所帮助

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网