我一直在编写货币转换器,需要使用jQuery和AJAX发送货币和货币,以及转换为PHP文件的值,这将返回转换后的值。
我的解决方案基于:How can I call PHP functions by JavaScript?,但它似乎无效。
jQuery代码:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script>
function exchange(from, to, amount){
alert("got to here"); //this alert shows
jQuery.ajax({
type: "POST",
url: 'exchange_caller.php',
dataType: 'json',
data: {functionname: 'exchange_rate_convert', arguments:["USD", "EUR", 1]},
//dummy pass values
success: function (obj, textstatus){
if( !('error' in obj)){
answer = obj.result;
alert(answer); //neither of these alerts show
alert('anything');
}
else{
console.log(obj.error);
alert("got an error"); //this alert doesn't show
}
}
});
alert("passed the block"); //this alert shows
return false; //return false so the page doesn't refresh
}</script>
php文件'exchange_caller.php'中的代码(设置为虚拟)。
<?php header('Content-Type: application/json');
$aResult = array();
if(!isset($_POST['functionname'])){
$aResult['error'] = 'No function name!';
}
if(!isset($_POST['arguments'])){
$aResult['error'] = 'No function arguments';
}
if(!isset($aResult['error'])){
switch($_POST['functionname']){
case 'exchange_rate_convert':
if(!is_array($_POST['arguments']) || (count($_POST['arguments']) < 3)){
$aResult['error'] = 'Error in arguments!';
}
else{
$aResult['result'] = exchange_rate_convert($_POST['arguments'][0], $_POST['arguments'][1], $_POST['arguments'][2]);
}
break;
default:
$aResult['error'] = 'Not found function '.$_POST['functionname'].'!';
break;
}
}
echo json_encode($aResult);
function exchange_rate_convert($from, $to, $amount){ //function to run
//dummy code, just return 2 for now
$value = 2;
return $value;
}?>
当这个运行时,我收到'到这里'和'传递阻止'错误消息,但是当我应该得到一个结果时,这两个消息都没有。
非常感谢任何帮助。
谢谢。
答案 0 :(得分:0)
我使用发布的代码设置文件,它们按预期运行。
看起来还有另一个与提供的代码无关的问题。
我建议您确保托管环境不存在问题。请查阅您的服务器日志,看看是否有其他问题阻止您的请求得到满足,并在另一个浏览器中对其进行测试,以确保没有任何插件或扩展程序干扰它。