= gmaps(markers: { data: @json, options: @marker_options }, map_options: @map_options )
- content_for :map_scripts do
:javascript
Gmaps.map.callback = function() {
alert('asdf') // <-- I never see this alert
}
使用gmaps4rails gem(v1.5.2),我将上面的代码放在我的视图中。我的地图看起来很好用我的标记。但是使用我的javascript,我不应该收到警报(我不是)?我不确定我是否完全了解回调。
仅供参考,javascript在我的源代码中显示正常。
答案 0 :(得分:0)
应该是content_for :scripts
,如文档
另外,根据您的浏览器,您最好:alert('asdf');
代替alert('asdf')