通过PHP将mySQL数据拉入Javascript对象数组中

时间:2017-06-23 22:03:10

标签: javascript php mysql arrays mysqli

我正在尝试从mySQL中提取数据并将其转换为我可以传递给google.maps API的格式。我在想mySQL - > php - > javascript - > google.maps最有意义,但我对其他建议毫不含糊。

到目前为止,我已连接并成功将数据查询到数组

<?php
//library of mysql functions including linkDB()
  include('../sqlFunctions/sqlFunctions.php');

//Establish connection to database
  if($link = linkDB()){
    echo "connected to DB";
  }

//set up a MySQL query.  I am simply pulling geocoordinate ints, strings and boolean.
  $sql = "SELECT title
            ,lat
            ,lng
            ,titleYou
            ,descriptionAre
            ,privacyRockstar
      FROM shelters;";

  if($results = $link->query($sql)){
    echo "<p>Query succsessful.</p>";
  }else{
    echo "Query Failed";
  }

//initialize an array to store data
  $rows = array();

    while ($data = $results->fetch_assoc()) {
      $rows[] = $data;

      echo "<br><br>Loop rotation: ";
      var_dump($data);
    }

    echo "<br><p>The End of The Loop<p><br>";
    var_dump($rows);
?>

现在我只需将此数据转换为可以传递给google.maps的可用内容。

在我从一个文本文件中提取JSON之前,这是有效的,但我想要数据库的灵活性和稳定性。很容易解析Javascript对象和数组。然后我可以调用索引和我需要的属性,正如你从我正在使用的这个函数中看到的那样。

function setMarkers(){
    for(i=0; i < jsonParsed.arrayOfObjs.length; i++){

//setting parameters to hand to google
      var markerOptions = {
        position : jsonParsed.arrayOfObjs[i].position,
        map : mapCanvas,
        description : jsonParsed.arrayOfObjs[i].title,
        icon: 'http://maps.google.com/mapfiles/ms/icons/blue-dot.png',
      };

    //create marker
    this ['marker' + i] = new google.maps.Marker(markerOptions);
    }
  }

感谢您为我的问题提供帮助。

1 个答案:

答案 0 :(得分:1)

听起来你已经找到了答案,但我会发布完整性。

只需将var_dump($rows)行更改为json_encode($rows)

在php文档中阅读有关json_encode的更多信息。

你可能想要两个php文件:

    发出api.php
  • Content-type: application/json文件 发出index.php并致电Content-type: text/html
  • api.php文件

在索引页面上,您可以对API端点进行AJAX调用,然后使用JSON.parse(response)