php-如何最好地将mysql数据实现为一行javascript代码?
作者:互联网
我正在为Google地图修改一些JavaScript,以便从我的数据库中检索不同的图钉信息.如果我只是用php来做到这一点,它将是这样的:
<?php while($row = mysql_fetch_assoc($query))
{$title = $row['title']; $desc = $row['desc']; echo 'This '.$title .' and this '. $desc .';}?>
如果数据库中有5行,将有5行带有5个不同的标题和描述.
但是我想在while循环中使用以下这行javascript:
map.addMarkerByLatLng(37.8685, -1.5108, "Sanatario de Terburculosos", createInfo("title goes here",""));
我如何编写它,以便javascript在php while循环中,或者我该如何在php while循环中实现javascript等价,以便我可以像上面一样在自己的javascript代码中检索多行lang,lat info?
谢谢.
解决方法:
结合您提供的两个代码示例:
<?php
$pinTpl = 'map.addMarkerByLatLng( %s , %s , "%s" , createInfo( "%s" , "" ) );';
while( $row = mysql_fetch_assoc( $query ) ){
echo sprintf( $pinTpl ,
$row['lat'] , # Where 'lat' is the field name for the latitude in DB
$row['long'] , # Where 'long' is the longitude field name in DB
$row['title'] , # The title
$row['desc'] # The description
)."\n"; # A newline, for readability
}
?>
标签:while-loop,google-maps,javascript,mysql,php 来源: https://codeday.me/bug/20191208/2088676.html