jsonを使用してphpからjavascriptに変数を渡す際に問題があります。基本的に問題は、私のjavascriptでresponseTextの項目をデバッグして表示できるが、それらを変数に割り当てたり表示したりできないことです。単一のアイテムですが、なぜこれが起こっているのかについてのアイデアを管理していませんでした。
function ajaxrequestDB() {
var AJAX = null; // Initialize the AJAX variable.
if (window.XMLHttpRequest) { // Does this browser have an XMLHttpRequest object?
AJAX=new XMLHttpRequest(); // Yes -- initialize it.
}
else { // No, try to initialize it IE style
AJAX=new ActiveXObject("Microsoft.XMLHTTP"); // Wheee, ActiveX, how do we format c: again?
} // End setup Ajax.
if (AJAX==null){ // If we couldn't initialize Ajax...
alert("Your browser doesn't support AJAX."); // Sorry msg.
return false // Return false, couldn't set up ajax
}
AJAX.onreadystatechange = function() { // When the browser has the request info..
if (AJAX.readyState==4 || AJAX.readyState=="complete")
{ // see if the complete flag is set.
callback(AJAX.responseText, AJAX.status); // Pass the response to our processing function
} // End Ajax readystate check.
}
var url='http://localhost/Scripts/refresh.php';
//var url='http://cpdtest.zzl.org/Scripts/hidemarker.php?Name='+myname;
AJAX.open("GET", url, true); // Open the url this object was set-up with.
AJAX.send(); // Send the request.
alert(AJAX.responseText);
var result = AJAX.responseText;
eval(result);
//alert(result);
}
上記から、AJAX.responseText でデバッグを行うと、php ファイルから返されたデータを確認できますが、アラート (AJAX.responseText) では空白のアラート ウィンドウしか表示されません。
以下は、dbから読み取り、変数をjavascriptに送信する私のphpファイルでもあります。
<?php
header('Content-type: application/json');
//$con = mysql_connect("localhost","770132_admin","admin");
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("cpd", $con);
$SQL = "SELECT name from markers";
$result = mysql_query($SQL);
while ($db_field = mysql_fetch_assoc($result)){
$data[]= $db_field;
}
echo json_encode($data);
?>