这个概念来自这个http://www.prepbootstrap.com/bootstrap-template/real-estate-list-map-dynamic
我在django模板中启用2个块,左侧阻止显示设备信息(设备名称和位置信息),右侧块显示设备地图位置。当用户可以单击左侧面板时,右侧地图将通过传递Django模板变量来更改Javascript例程。似乎 init_map 不接受传递的变量。
当用户点击左栏时,右侧地图将根据latlon切换,后者由onclick例程传递。
模板页面如下:
{% block content %}
{% for device in devices %}
<div class="col-xs-6 col-sm-6 col-md-4 col-lg-4 ">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
<div class="panel panel-default" onclick="init_map( {{ device.coordinates.latitude }}, {{device.coordinates.longitude }} );return false;">
<div class="row padall">
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<span></span>
<img src="{{ device.thumbnail.url }}">
</div>
<div class="col-xs-12 col-sm-12 col-md-9 col-lg-9">
<div class="clearfix">
<div class="pull-left">
<span class="fa fa-dollar icon">{{device.name}}</span>
</div>
<div class="pull-right">
{{device.coordinates }}
</div>
</div>
<div>
<h4><span class="fa fa-map-marker icon"></span>{{ device.coordinates }}</h4>
<span class="fa fa-lock icon pull-right">{{ device.coordinates }}</span>
{% with lat_lon=device.coordinates %}
new is {{ lat_lon }}
{% endwith %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<div class="row padbig">
<div id="map" class="map"></div>
</div>
</div>
{% endfor %}
{% endblock content %}
{% block extra_js %}
<script type="text/javascript" src="http://webapi.amap.com/maps?v=1.3&key=a23b5e94cecc8e98acd039aba6cd064c"></script>
<script type="text/javascript">
var lat_lon = {{ device.coordinates | js }};
function init_map(lat,lon) {
var imageLayer = new AMap.ImageLayer({
url:'http://developer.amap.com/wp-content/uploads/2014/06/dongwuyuan.jpg',
bounds: new AMap.Bounds(
new AMap.LngLat(116.327911, 39.939229),
new AMap.LngLat(116.342659, 39.946275)),
zooms: [15, 18]
});
var map = new AMap.Map('map',{
resizeEnable: true,
scrollWheel: true,
doubleClickZoom: true,
layers: [
new AMap.TileLayer(),
imageLayer
],
view: new AMap.View2D({
//center: new AMap.LngLat(116.342659, 39.946275),
center: new AMap.LngLat(lat,lon),
zoom:15
})
});
}
//init_map(0);
</script>
{% endblock %}
如果我启用&#34; center:new AMap.LngLat(116.342659,39.946275),&#34;地图将显示,而使用&#34; center:new AMap.LngLat(lat,lon),&#34; ,没有地图显示。
答案 0 :(得分:1)
我建议完全避免使用html onclick()
。您可以将模板变量{{ variables }}
传递给外部脚本中的javascript函数,然后添加事件侦听器(click
)以在单击左列时执行函数。这允许您在脚本中的任何位置使用{{ variables }}
,它只需要HTML中的单个定义,而不必在每次需要时将其作为onclick()
参数传递(如果适用于你的情况)。即使情况并非如此,尽可能将页面逻辑(javascript)与其结构(html)分开仍然是一种更好的做法。
例如,要在外部脚本中使用模板变量,您需要在django模板中的脚本标记之间声明变量,如下所示:
<script>
var myVariables = {{ variables }};
</script>
如果您在声明myVariables
之后加载了myVariables
,则可以在外部脚本中使用<script src="myExternalScript.js"></script>
:
document.getElementById("leftBlockDivId").addEventListener("click", function() {
init_map(myVariables); // see how we can use myVariables here since it's already been declared
}, false);
在该脚本中,您可以添加一个可能如下所示的单击事件处理程序:
jQuery
如果您使用$('#leftBlockDivID').click(function(){
init_map(myVariables);
});
来执行以下操作,上面的事件处理程序甚至会更简单:
{{1}}
答案 1 :(得分:1)
您还可以将变量传递到data-
属性:
<div data-variables="{{ variables }}">
甚至:
<div data-latitude="{{ variables.0 }}" data-longitude="{{ variables.1 }}">
并映射纯javascript侦听器以单击该html元素,您将在其中检索这些数据属性。它可以让您避免使用onclick=
并直接将其传递给外部脚本或创建<script>
元素来检索该数据。
答案 2 :(得分:0)
如果你传递一个坐标,很可能你有一个由纬度和经度组成的元组。您必须在传递给Javascript函数时将它们分开。
你可以试试这个:
<div onclick=init_map({{ variables.0 }}, {{ variables.1 }})>
答案 3 :(得分:0)
我的解决方案:
{{ data1 }} {{ data2 }}
faisal khan
答案 4 :(得分:0)
当你尝试添加一个字符串时,注意用引号或双引号包裹你的标签,如果你不这样做,Js认为它是一个变量名并且已经被定义。
<a onclick="console.log('{{ class_name.string_field }}')"