我运行mysql查询并成功获得结果。但是,我无法从javascript端读取数组的元素。任何人都可以帮忙??
//JAVASCRIPT makes a request
function profiles(){
$.post('dbConn.php', { opType:"getProfileList" }, fillProfileCombo, "text");
}
function fillProfileCombo(res) {
alert(res);
}
//dbConn.php takes the request , gets the result and passes via echo as it is shown as follows:
//RETURN PROFILE LIST
else if (!strcmp($opType, "getProfileList")){ //no param is coming
$connect = mysql_connect( $db_host, $db_user, $db_pass ) or die( mysql_error() );
mysql_select_db( $db_name ) or die( mysql_error() );
$profiles = mysql_query(" SELECT DISTINCT profileName FROM `map_locations` ");
$row = mysql_fetch_array($profiles);
/*while() {
echo $row['FirstName'] . " " . $row['LastName'];
echo "<br />";
}
*/
//$data = array();
//$row = mysql_fetch_assoc($profiles)
/*while($row = mysql_fetch_assoc($profiles))
{
$data[] = $row;
}*/
if ($row){
echo $row;
} else {
echo "ERROR occured";
}
}
//问题:
//当我将echo $ row; 更改为 echo $ row [0]; 时,我看到警告框中的第一个元素...查询肯定是工作..
//然而当我将 res 更改为res [0]时,它没有显示任何内容 - 这是正常的,因为我不知道如何将php数组转换为js数组..
function fillProfileCombo(res) {
alert(res[0]); // does not work..
}
我不想顺便使用json ......我不是很擅长。我不想搞砸了。任何建议和帮助表示赞赏。
答案 0 :(得分:0)
// PHP
$res = array();
while ($row = mysql_fetch_array($profiles)) {
$res[] = $row['profileName'];
}
header('Content-type: application/json');
echo json_encode($res);
// JavaScript
$.post('dbConn.php', { opType:"getProfileList" }, function(data) {
alert(data.length + " profiles returned");
}, "json");
答案 1 :(得分:0)
谢谢Phil..This现在有效..我按照你的方式改变......也许它有效但我无法运行它。除了一些变化之外非常相似。我把它改成了这样:
// PHP
$data = array();
while($row = mysql_fetch_assoc($profiles))
{
$data[] = $row;
}
if ($data){
echo json_encode($data);
} else {
echo $data;
}
// JS
function profiles(){
//$.post('dbConn.php', { opType:"getProfileList" }, fillProfileCombo, "json");
$.post('dbConn.php', { opType:"getProfileList" }, fillProfileCombo, "json");
}
function fillProfileCombo(data) {
alert(data[1].profileName);
}