如何从ajax和php获取返回值

时间:2010-09-29 21:56:53

标签: ajax

我设置了一个由ajax调用的php文件来与我的数据库进行交互。到目前为止,我已成功使用json从sql请求中获取数据。现在我从php文件返回我自己的值,并尝试将值返回到我的javascript中。但他们回来是空的。这就是我这样做的方式:

// in the php file, gets data and database, and returns a number through echo
$result = 2;
echo $return;

//the javascript which calls the ajax and gets the value
var temp = ajaxdb(args);
showError(temp);

show error在div中显示变量。

我知道我的函数正常工作,因为当我返回一个json字符串时它们运行良好,并将其解析为一个数组。但我怎样才能从php中获取我的自定义值?

1 个答案:

答案 0 :(得分:0)

echo json_encode($ return);