分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 前端开发

js通过ajax发送header信息php接收

发布时间:2023-09-06 01:40责任编辑:白小东关键词:js
一、js:
  1. 要点:
  2. 完整代码:
    <!DOCTYPE html><html lang="en"> ???<head> ???????<meta charset="UTF-8"> ???????<title>Document</title> ???????<script src="jquery.min.js"></script> ???</head> ???<body> ???????????<script> ???????????????????$.ajax({ ???????????????????????????‘url‘:‘http://localhost/index.php‘, ???????????????????????????‘data‘:{‘sex‘:‘male‘}, ???????????????????????????‘beforeSend‘:function(xhr){ ???????????????????????????????xhr.setRequestHeader(‘name‘,‘lee‘); ???????????????????????????????xhr.setRequestHeader(‘sex‘,‘male‘); ???????????????????????????????xhr.setRequestHeader(‘height‘,‘168‘); ???????????????????????????}, ???????????????????????????‘success‘:function(data){ ???????????????????????????????console.log(data); ???????????????????????????} ???????????????????????}); ???????????</script> ???</body></html>

    二、php:

  3. 要点:
  4. 完整代码:
    <?php ???????header(‘Access-Control-Allow-Origin:*‘); ???????header(‘Access-Control-Allow-Credentials: true‘); ???????header(‘Access-Control-Allow-Methods:GET,PUT,POST,DELETE,OPTIONS‘); ???????header(‘Access-Control-Allow-Headers:WWW-Authenticate,Authorization,Set-Cookie,X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version,name,sex,height‘); ???????$header = apache_request_headers(); ???????var_Dump($header);exit;

js通过ajax发送header信息php接收

原文地址:http://blog.51cto.com/12173069/2066641

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved