我在列表中有标记,我正在尝试从我的数据库中读取列表中的标记以显示弹出信息,但它不起作用。我正在使用jinja将python中的列表打印成html,我只是得到一个内部服务器错误消息。我正在使用oracle和cgi-bin
var markers= L.markerClusterGroup({
});
{% for item in markers %}
var marker{{ item[0] }} = L.marker({{ item[3:] }});
var popup{{ item[0] }} = $('<div />');
popup{{ item[0] }}.html("<br>{{ item[1] }}<br>£{{ item[2] }<br<button>Run to this place</button>");
markers.addLayer(marker{{ item[0] }}.bindPopup(popup{{ item[0] }}[0]));
map.addLayer(markers)
{% endfor %}