3

我有这个 jQuery 脚本,它将用户名和密码发送到 PHP 文件,该文件检查该用户是否存在并返回 JSON 用户对象。在非 IE 浏览器中工作正常,但 IE 失败。

奇怪的是,IE“萤火虫”说一切都很好,但 PHP 脚本没有收到任何变量......

这是请求正文:

用户名=johanderowan&密码=1234

这些是请求标头(出于安全原因,我省略了一些变量):

Request = POST /1.0/account/login.json HTTP/1.1
Accept = /
Origin = [DEVURL]
Accept-Language = nl-NL
UA-CPU = AMD64
Accept-Encoding = gzip, deflate
User-Agent = Mozilla/5.0(兼容; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)
Host = [DEVURL]
Content-Length = 66
Connection Keep-Alive Cache-Control no-cache

响应正文是(前三个空数组是 $_GET、$_POST 和 $_REQUEST):

Array ( )
Array ( )
Array ( )
{"status":"error","message":"未指定用户名或密码。","httpCode":500}

这是请求脚本:

$('.mobyNowLoginForm form').bind('submit', function(){  
    var username = $(this).find('.username').val();  
    var password = $(this).find('.password').val();  
    $.post('[url]/1.0/account/login.json', {
        username: username,
        password: password
    }, function(response) {
        // do something
    }, "JSON");  
    return false;
});

我完全不知道这里可能出了什么问题......

4

2 回答 2

1

看来 IE 没有在跨域请求中发送正确的内容类型。内容类型始终设置为“文本/纯文本”。

在此博文中了解有关此缺点的更多信息:http: //blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx

我们通过解析 php://input 字符串并将其设置为 $_POST vars 在服务器上解决了这个问题。

if ($_SERVER['REQUEST_METHOD'] == 'POST' && count($_POST) == 0) {
    $postData = file_get_contents('php://input');
    $postVars = explode('&', $postData);
    foreach ($postVars as $postVar) {
        list($key, $var) = explode('=', $postVar);
        $_POST[$key] = $var;
    }
}
于 2012-05-24T08:40:27.517 回答
0

您是否尝试将缓存设置为 false。我有一个类似的问题,这解决了它:

$.ajax({
  type: 'POST',
  url: '[url]/1.0/account/login.json',
  dataType: 'json',
  data: {
      username: username,
      password: password
  },
  cache: false,
  success: function() {
      // Do something
  }
});

我希望这可以帮助你!

史蒂芬

编辑

问题也可能出在您的请求 URL 中。您尝试调用 .json 文件。您可以尝试调用 .php 文件。

确保你把它放在你的 .php 文件中:

header("Content-Type: application/json");
于 2012-05-23T14:01:03.477 回答