簡體   English   中英

無法在PHP AJAX請求中發送文件

[英]Unable to Send Files in PHP AJAX Request

我無法在PHP AJAX請求中發送文件:

形成:

<form class="frmContact" action="#" method="post">
                  <div class="col-md-6">  
                     <input type="hidden" name="emailTo" id="emailTo" value="example@domain.com">     
                     <input type="text" placeholder="Name" name="txtName" id="txtName">
                     <input type="email" placeholder="Email" name="txtEmail" id="txtEmail">
                     <input type="text" placeholder="Subject" name="txtSubject" id="txtSubject">

                     <input type="file" placeholder="Text File" name="txtFile" id="txtFile" />

                  </div>
                  <div class="col-md-6">  
                     <textarea placeholder="Message" cols="40" rows="10" name="txtText" id="txtText"></textarea>
                     <button class="btnSend" type="button">Send Your Message</button>
                     <span id="spanMessage"></span>
                  </div>
               </form>

Ajax代碼:

$.ajax({
        url: "includes/mail.php", // Url to which the request is send
        type: "POST",             // Type of request to be send, called as method
        data: new FormData(this), // Data sent to server, a set of key/value pairs (i.e. form fields and values)
        contentType: false,       // The content type used when sending data to the server.
        cache: false,             // To unable request pages to be cached
        processData:false,        // To send DOMDocument or non processed data file it is set to false
        success: function(data)   // A function to be called if request succeeds
        {
        console.log(data);
        }
        });

PHP代碼:

echo '<pre>'; print_r($_REQUEST); print_r($_FILES);  die;

控制台結果:

Array
(
)

Array
(
)

使用jQuery jQuery v1.11.2

您能幫我調試錯誤嗎?

您忘記了enctype="multipart/form-data" 請將其添加到表單標簽:

<form class="frmContact" action="#" method="post" enctype="multipart/form-data">

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM