我有这个代码,我会在codeigniter中添加一个控制器的功能:
function myFunction() {
var address = 'my address';
var geocoder = new google.maps.Geocoder();
geocoder.geocode( {'address': address}, function(results,status) {
if (status == google.maps.GeocoderStatus.OK)
{
alert('Latitude: ' + results[0].geometry.location.lat() + 'Longitude: ' + results[0].geometry.location.lng());
}
else
{
alert("Error: " + status);
}
});
}
我的目标是在数据库中输入纬度和经度,因此我决定在我的控制器中使用代码echo
在函数的开头输入代码,但不起作用。
(我试过,总是在我的控制器功能的开头,一个echo
编写,并且它可以工作:echo '<script>alert(myVar)</script>';
)