需要帮助从 MySQL 数据行中形成 javascript 对象。我在 Windows-7 上使用 IE9 和 Chrome 。
我已经设法从mySQL数据中获取我认为是Javascript中的数组(对象)。我可以使用警报来查看整个数组,以及一个单独的对象,就像在我的代码中一样。
我还不能做的是导航特定对象的属性(数据库中特定行的列值)。
我需要做的是遍历myObjects
,并使用每个属性值来创建一些图形。我还需要能够在任何时候检索每个对象的属性。
更新:包括位于head html对象中的php:
<?php
//------------------- constants --------------------
$objects = array();
$jsonData = "";
//------------------- database connection ----------
$data_source = 'mysql:host=localhost;dbname=myDB';
$db_user = 'root';
$db_password = 'password';
$conn = new PDO($data_source, $db_user, $db_password,
array(PDO::ATTR_EMULATE_PREPARES => false,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_PERSISTENT));
//prepare query
$stmt = $conn->prepare("SELECT * FROM tblbranchstatus");
$stmt->execute();
//fetch each row of results
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
$rows[] = json_encode($row);
}
?>
var ART = {};
//capture data from database as json string data
ART.strJSON = <? php echo json_encode($rows); ?> ;
//capture json string data as array of javascript objects
//using 'eval' cause I know this data's source and I couldn't get JSON.parse to work
ART.myObjects = eval(ART.strJSON);
ART.branch = ART.myObjects[6];
alert(ART.branch); // this gives me the expected object {"a":"aa", "b":"bb"...}
alert(ART.branch.a); // can't retrieve the property - gives me 'undefined'
答案 0 :(得分:2)
这看起来不太合适。这是你应该做的:
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
$rows[] = $row;
}
不要在每一行上json_encode()
。
ART.myObjects = <?php echo json_encode($rows); ?>;
您可以立即在脚本中使用json_encode($rows)
的输出。
<强>更新强>
正如mentioned bfavaretto所述,您可以通过一次编码所有行来缩短时间:
ART.myObjects = <?php echo json_encode($stmt->fetchAll(PDO::FETCH_ASSOC)); ?>;
答案 1 :(得分:0)
我会检查ART.branch是否实际上是一个带有JSON表示法的字符串而不是实际的对象。