我已经在这个问题上花费了几个小时,但找不到解决方案。我在网页上有以下服务(kohana 3.2):
public function action_test() {
$data = file_get_contents('php://input');
$json = json_decode($data);
$t = array();
$t[Utils::$KEY_LOGIN] = isset($json->login) ? $json->login : arr::get($_POST, Utils::$KEY_LOGIN, null);
$t[Utils::$KEY_PASSWORD] = isset($json->password) ? $json->password : arr::get($_POST, Utils::$KEY_PASSWORD, null);
$returned = array("success" => true);
$returned = array_merge($returned, array("login" => $t[Utils::$KEY_LOGIN]));
$this->auto_render = FALSE;
ob_clean();
$this->request->headers['Content-Type'] = "application/json";
$this->response->body(json_encode($returned));
}
以及询问服务的表格:
<html>
<head>
<meta charset="utf-8" />
<script type="text/javascript" src="//media/js/jquery-1.6.2.min.js"> </script>
<script type="text/javascript" src="//media/js/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#login_sb").click(function() {
//var action = 'http://www.aaa.pl/clientservices/test';
var action = "http://localhost/aaa/clientservices/test";
$.ajax({
url : action,
type : "post",
dataType : "json",
cache : "false",
timeout: 8000,
data : {
'login': 'login@wp.pl'
},
success : function(data) {
alert(data);
if(data.success) {
alert(data.login);
}
}
});
//
return false;
});
});
</script>
</head>
<body>
<form id="login_form" method="post">
<input type="submit" value="login" id="login_sb"/>
</form>
</body>
当我致电本地服务时,一切正常。但是当我试图通过 Ajax 远程调用它时 - 它不起作用。当我手动发送表单时它也可以工作。请帮忙,因为我没有任何新想法出了什么问题。