本文主和要介绍了fetch 使用及如何接收js传值,文中给大家提到了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']
相关推荐:
JavaScript如何使用fetch来完成异步请求的实例介绍
以上就是详解fetch的使用方法及如何接收JS传值的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号