從AngularJS 發送的HTTP POST 會在PHP 中產生未定義的POST 變數
在我們的設定中,Angular PHP 發送HTTP POST 請求腳本,但PHP 腳本收到「電子郵件」和「密碼」POST的未定義值
調試原因
問題在於AngularJS發送的Content-Type頭與PHP期望的資料格式不符。 AngularJS 使用 application/json 作為預設的 Content-Type 標頭,但 PHP 腳本需要表單編碼的資料。
解決方案1:在PHP 中使用Application/JSON
一個解決方案是將AngularJS 中的Content-Type 標頭更改為application/json 並使用PHP 的file_get_contents("php://input") 來擷取原始資料請求正文。然後可以從 JSON 反序列化資料。
$postdata = file_get_contents("php://input"); $request = json_decode($postdata); $email = $request->email; $pass = $request->password;
解決方案 2:傳送表單編碼資料
或者,AngularJS 可以設定為傳送表單編碼資料。這涉及手動或使用 jQuery.serialize() 建立查詢字串。然後應該對查詢字串進行 URL 編碼並設定為請求資料。
$email = $_POST['email']; $pass = $_POST['password'];
已棄用的方法
請注意 .success() 和 .error() 方法程式碼中提到的內容已被棄用。使用 .then() 代替。
以上是為什麼我的 PHP 腳本中未定義 AngularJS POST 變數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!