我正在开发一个 phonegap 应用程序,我需要将一些数据从 html 文件发送到服务器并获得输出作为响应。当我将所有文件都保存在保存服务器中时,它们就可以工作。当我将文件拆分为客户端和服务器机器时,它们不起作用,据我所知,它与跨域 POST 请求有关。下面是我的代码:
客户端:something.html
$(document).ready(function() {
$("#login").click(function(e){
var formData = $("#loginForm").serialize();
$.ajax({
type: "POST",
url: "http://testserver.bscheme.com/rss/login.php",
crossDomain: true,
cache: false,
data: formData,
success: function(txt){
if(txt !=""){
localStorage.setItem("background", txt);
//alert(localStorage.getItem("background"));
document.location.href="logged.html";
}
else
alert("Badly Failed");
}
});
e.preventDefault();
}); });
服务器端:login.php
<?php
include('inc/db.php');
try
{
$userName = mysql_real_escape_string($_POST['username']);
$passcode = mysql_real_escape_string($_POST['passcode']);
if(empty($feedName)!="" && empty($feedUrl)!="") {
$result = mysql_query("SELECT id,email,password FROM user WHERE email = '".$userName."'");
$row = mysql_fetch_array($result);
//echo $userName . $row['email'];
// echo $passcode . $row['password'];
if($row['email']== $userName && $row['password'] == $passcode && $row['email']!= "" && $row['password'] != "") {
echo $row['id'];
}else{
echo "fail";
}
} else {
echo "All fields are mandatory!";
}
}
catch(Exception $e)
{
// normally we would log this error
echo $e->getMessage();
}
我如何允许跨域 POST,我知道我必须编辑我的服务器 php 文件,并且我添加了以下代码,但我也可以工作
switch ($_SERVER['HTTP_ORIGIN']) {
case 'http://localhost/rss': case 'https://localhost/':
header('Access-Control-Allow-Origin: '.$_SERVER['HTTP_ORIGIN']);
header('Access-Control-Allow-Methods: POST, GET, OPTIONS');
header('Access-Control-Max-Age: 1000');
header('Access-Control-Allow-Headers: Content-Type');
break;
}
使用 Firebug 我说我的 $.POST 这就是我拥有的
ResponseHeaders RequestHeaders Content-Type application/x-www-form-urlencoded; charset=UTF-8 接受 /
参数application/x-www-form-urlencoded passcode asd username qwe Source username=qwe&passcode=asd
回复
响应始终为空白。当所有 html 和 php 都在本地主机或我的测试服务器中时,它可以工作。我的 php 和 jquery 技能缺乏 atm,所以如果其他人已经问过我很抱歉重复的问题,我也很难理解。为你提供帮助