我想从数据库中获取数据(经度/纬度),并使用Ajax调用将其返回到Google地图上绘制多个标记。
下面是包含ajax的javascript:
<script type='text/javascript'>
(function(){
var map,marker,latlng,bounds,infowin;
/* initial locations for map */
var _lat=5.441771999999999;
var _lng=100.2936793;
var id=1;
function showMap(){
/* set the default initial location */
latlng={ lat: _lat, lng: _lng };
bounds = new google.maps.LatLngBounds();
infowin = new google.maps.InfoWindow();
/* invoke the map */
map = new google.maps.Map( document.getElementById('gmap'), {
center:latlng,
zoom: 15
});
/* show the initial marker */
marker = new google.maps.Marker({
position:latlng,
map: map,
title: 'Hello World!'
});
bounds.extend( marker.position );
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
$.ajax({
type: 'GET',
url: '{{route("voyager.dashboard")}}',
data: {id:id},
success: function (response){
$.each(response, function( i,item ){
/* add a marker for each location in response data */
addMarker( item.latitude, item.longitude, item.location_status );
});
},
error: function(){
alert('There was an error loading the data.');
}
});
}
/* simple function just to add a new marker */
function addMarker(lat,lng,title){
marker = new google.maps.Marker({/* Cast the returned data as floats using parseFloat() */
position:{ lat:parseFloat( lat ), lng:parseFloat( lng ) },
map:map,
title:title
});
google.maps.event.addListener( marker, 'click', function(event){
infowin.setContent(this.title);
infowin.open(map,this);
infowin.setPosition(this.position);
}.bind( marker ));
bounds.extend( marker.position );
map.fitBounds( bounds );
}
document.addEventListener( 'DOMContentLoaded', showMap, false );
}());
</script>
在ajax设置中,当我输入“dataType:json”时,函数错误被执行。输出为警报“加载数据时出错”。
这是我的控制器:
public function _index(Request $request)
{
$locations = Location::select('latitude','longitude','location_status')->get();
if( $locations ) {
foreach( $locations as $location ) {
$markers[]=array( 'latitude'=>$location->latitude, 'longitude'=>$location->longitude, 'location_status'=>$location->location_status );
}
return json_encode($markers, JSON_FORCE_OBJECT);
}
return view('vendor.voyager.index');
我尝试console.log(响应),它显示整个javascript代码。
当前没有“数据类型:'json'”的错误显示“未捕获类型错误:无法使用'in'运算符搜索'length'…”
我一直在尝试:
$.each(JSON.parse(response), function( i,item )
错误显示为“未捕获SyntaxError:意外标记
这是api的路线。php:
Route::group(['middleware' => ['api']], function () {
Route::get('/', ['uses' => 'VoyagerController@_index', 'as' => 'voyager.dashboard']);
});
我不熟悉ajax/jQuery。这是我第一次用它。希望有人能帮助我。提前谢谢你。
将您的函数更改为
public function googleMarkers(Request $request)
{
$locations = Location::select('latitude','longitude','location_status')->get();
return response()->json($locations);
}
你去的路线
Route::post('/', ['uses' => 'VoyagerController@googleMarkers', 'as' => 'gooogle.markers']);
因此,您的ajax调用
$.ajax({
type: 'POST',
url: '{{route("google.markers")}}',
data: {id:id},
问题内容: 我想使用php和jquery ajax从mysql数据库中获取数据。“ process.php”是连接到数据库并获取mysql数据的php文件。当它单独运行时它可以工作,但是当使用ajax调用时它不起作用。有人可以帮忙纠正错误吗?这是我的html文件: 这是我的process.php文件 问题答案: 您的ajax调用中有两个语法错误: 请记住,jQuery的ajax需要一个对象作为参数
问题内容: 我想知道如何在CodeIgniter中使用AJAX从数据库获取数据。您能否检查下面的代码以找出问题的原因?当我从视图中单击链接时,没有任何反应。 这是我的看法: 这是我的控制器: 这是我的模型: 这是我的JavaScript文件: 问题答案: 试试这个: 我所看到的问题是这是因为您的选择器是锚,并且锚具有文本而不是值。因此,我建议您使用而不是。
问题内容: 我的页面如下: 和一个php文件来处理ajax请求; 但是,当我单击时,我得到的不是array [0]。我怎样才能解决这个问题?? 提前致谢… 问题答案: 您不能从js访问数组(php数组)try 和js
我想从数据库获取数据,我目前正在使用spring。结果是DTO,如果我打印它,它会显示像com.shs.s1.coupon.coupondTo@456bbb4f这样的,这些是DTO的成员,它也有getters/setter。 我想在DTO打印出couponNum,id和其他东西。但它一直未定义地打印出来。 请随意评论答案或想法:)所有的评论都很好。
问题内容: 这是我在index.html上的代码: 我如何编程test.php以获取在AJAX API中发送的“数据”? 问题答案: 您在这里问一个非常基本的问题。您首先应该阅读一些Ajax教程。只是为了帮助您(假设您知道发送数据的GET和POST方法),数据中的“数据”:函数(数据)中的“数据”与“数据”不同。为了清楚起见,您应该为它们命名不同,如下所示: 这清楚地表明,一个是要通过POST参数
问题内容: 我正在尝试通过jQuery ajax调用获取数据。 我的代码如下所示: 我的文件返回的是json格式的数据,但某些文本为Unicode格式。我在我的javascript文件上及其上设置了字符集,但仍然无法访问响应的数据对象。 有任何想法吗? 问题答案: 尝试加入您的ajax调用: