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

pup输入之后,显示空白

pup输入之后,显示空白

PHP
宝慕林6116383 2019-06-21 12:56:17
<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 回答

  • 1 回答
  • 0 关注
  • 507 浏览

添加回答

举报

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