美文网首页
axios发送post 请求 PHP接受数据的方式

axios发送post 请求 PHP接受数据的方式

作者: 皇甫圣坤 | 来源:发表于2019-03-19 19:33 被阅读0次
      axios.post('http://localhost/comments/post.php', {
          a: 10
        }).then(res => {
          console.log(res)
        })
    
    <?php
    //json头
    header("Content-type: application/json");
    //跨域
    header("Access-Control-Allow-Credentials: true");
    header("Access-Control-Allow-Origin: *");
    //CORS
    header("Access-Control-Request-Methods:GET, POST, PUT, DELETE, OPTIONS");
    header('Access-Control-Allow-Headers:x-requested-with,content-type,test-token,test-sessid');//注意头部自定义参数不要用下划线
     // $a = $_POST['a'];
     $a = json_decode($HTTP_RAW_POST_DATA);
     print_r($a->a);
    

    相关文章

      网友评论

          本文标题:axios发送post 请求 PHP接受数据的方式

          本文链接:https://www.haomeiwen.com/subject/utonmqtx.html