为了账号安全,请及时绑定邮箱和手机立即绑定

Notice: Undefined index: name

Notice: Undefined index: name

PHP
宝慕林6116383 2019-06-21 12:50:54
<script>          let obj = {           name:'Alice',           age:100,           sex:'man',           class:'1905'       }          // 将对象转换成字符串拼接的格式       function objtostring(obj) {           let arr=[];           for(let i in obj){               arr.push(i+'='+obj[i]);           }           return arr.join('&');       }       console.log(objtostring(obj));              let request = new  XMLHttpRequest();       request.open('get','http://10.31.158.12/day23/get.php?'+objtostring(obj),true);       request.send();       request.onreadystatechange = function(){           if(request.readyState==4){                   if(request.status==200){                   }                   else {                       throw new Error('接口地址有误:'+request.status);                   }           }       }   </script><?php//  header('content-type:text/html;charset=utf-8');// error_reporting(0);echo $_GET["name"];?>
查看完整描述

1 回答

?
pardon110

TA贡献1038条经验 获得超227个赞

对编辑后的urll数据进行 encodeURIComponent()进行包裹组装

查看完整回答
反对 回复 2019-06-21
  • 1 回答
  • 0 关注
  • 735 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信