我已经花了几个小时来解决这个问题而无法找到解决方案。 我在网页上有以下服务(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远程调用它时 - 它不起作用。当我手动发送表单时,它也有效。请帮忙,因为我没有任何新想法会出现什么问题。
答案 0 :(得分:0)
您是否可能尝试从其他域调用AJAX请求?
如果您尝试在此网址上调用ajax请求:'http://www.aaa.pl/clientservices/test'
从您的本地设置中,您将收到错误,ajax请求必须来自同一个域。
一个文件一个localhost无法向www.aaa.pl发出ajax请求,因为它是一个不同的域和javascript中的安全问题。