<tfoot id='3ymUF'></tfoot>

      <small id='3ymUF'></small><noframes id='3ymUF'>

          <bdo id='3ymUF'></bdo><ul id='3ymUF'></ul>

      1. <i id='3ymUF'><tr id='3ymUF'><dt id='3ymUF'><q id='3ymUF'><span id='3ymUF'><b id='3ymUF'><form id='3ymUF'><ins id='3ymUF'></ins><ul id='3ymUF'></ul><sub id='3ymUF'></sub></form><legend id='3ymUF'></legend><bdo id='3ymUF'><pre id='3ymUF'><center id='3ymUF'></center></pre></bdo></b><th id='3ymUF'></th></span></q></dt></tr></i><div id='3ymUF'><tfoot id='3ymUF'></tfoot><dl id='3ymUF'><fieldset id='3ymUF'></fieldset></dl></div>
        <legend id='3ymUF'><style id='3ymUF'><dir id='3ymUF'><q id='3ymUF'></q></dir></style></legend>

        在 PHP 中处理 Axios POST

        process Axios POST in PHP(在 PHP 中处理 Axios POST)

        1. <legend id='45Kzk'><style id='45Kzk'><dir id='45Kzk'><q id='45Kzk'></q></dir></style></legend>
            <bdo id='45Kzk'></bdo><ul id='45Kzk'></ul>

          • <tfoot id='45Kzk'></tfoot>
              <tbody id='45Kzk'></tbody>

                <i id='45Kzk'><tr id='45Kzk'><dt id='45Kzk'><q id='45Kzk'><span id='45Kzk'><b id='45Kzk'><form id='45Kzk'><ins id='45Kzk'></ins><ul id='45Kzk'></ul><sub id='45Kzk'></sub></form><legend id='45Kzk'></legend><bdo id='45Kzk'><pre id='45Kzk'><center id='45Kzk'></center></pre></bdo></b><th id='45Kzk'></th></span></q></dt></tr></i><div id='45Kzk'><tfoot id='45Kzk'></tfoot><dl id='45Kzk'><fieldset id='45Kzk'></fieldset></dl></div>

                  <small id='45Kzk'></small><noframes id='45Kzk'>

                  本文介绍了在 PHP 中处理 Axios POST的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想向我的 PHP 文件发送一个 POST 请求来处理它并将数据存储在数据库中..我很坚持它,因为无论我尝试什么 $_POST 都是空的..

                  I want to send a POST request to my PHP file to handle it and store the data in the database.. I'm pretty stuck at it since $_POST stays empty whatever I try..

                  有人可以帮我发送帖子请求并帮助我如何处理吗?

                  Can someone help me sending a post request and help me how to handle it ?

                  我的 axios 请求:

                  My axios request:

                  // Performing a POST request
                  axios.post('dev/api/post.php',{ text: text, unk: unk})
                    .then(function(response){
                        console.log(response);
                  }).catch(function (error) {
                        console.log(error);
                  });  
                  

                  这是我在 PHP 中尝试过的,有些代码被注释掉了,因为不确定它是否有效..

                  And this is what I kinda tried in PHP, some code is commented out because not sure if it worked..

                  if(isset($_POST) && !empty($_POST)){
                  /*  
                  $jsonReceiveData = json_encode($_POST);
                  $json_output = json_decode($jsonReceiveData);
                  $task = $json_ouput->text;
                  $uniquekey = $json_output->unk;
                  */
                  echo $_POST;
                  /*
                  $stmt = $pdo->prepare("INSERT INTO todo (id, tekst, uniquekey) VALUES ('', :tekst, :unk)");
                  $stmt->bindParam(':unk', '1');
                  $stmt->bindParam(':tekst','testing');
                  $stmt->execute();
                  */
                  

                  }

                  解决方案:

                  $data = json_decode(file_get_contents("php://input"), true);
                  $task = $data['text'];
                  

                  在 php://input 中找到对象

                  The object was found in php://input

                  推荐答案

                  用户在php://input中查找"对象解决了它

                  The user solved it "finding" the object in php://input

                  $data = json_decode(file_get_contents("php://input"), true);
                  $task = $data['text'];
                  

                  正如 STEEL 所指出的,这是 PHP 代码的问题,而不是 React 或 Axios.

                  As pointed by STEEL, it was an issue at the PHP code, not React or Axios.

                  这篇关于在 PHP 中处理 Axios POST的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                    <bdo id='NQ8IW'></bdo><ul id='NQ8IW'></ul>
                      • <legend id='NQ8IW'><style id='NQ8IW'><dir id='NQ8IW'><q id='NQ8IW'></q></dir></style></legend>

                          <i id='NQ8IW'><tr id='NQ8IW'><dt id='NQ8IW'><q id='NQ8IW'><span id='NQ8IW'><b id='NQ8IW'><form id='NQ8IW'><ins id='NQ8IW'></ins><ul id='NQ8IW'></ul><sub id='NQ8IW'></sub></form><legend id='NQ8IW'></legend><bdo id='NQ8IW'><pre id='NQ8IW'><center id='NQ8IW'></center></pre></bdo></b><th id='NQ8IW'></th></span></q></dt></tr></i><div id='NQ8IW'><tfoot id='NQ8IW'></tfoot><dl id='NQ8IW'><fieldset id='NQ8IW'></fieldset></dl></div>

                          <tfoot id='NQ8IW'></tfoot>

                        • <small id='NQ8IW'></small><noframes id='NQ8IW'>

                            <tbody id='NQ8IW'></tbody>