带有传单的咖啡js,如果出错则意外

时间:2014-04-23 16:13:11

标签: ruby-on-rails coffeescript leaflet

map.on "click", (e) ->
  if count >= 2
    map.removeLayer(newMarkerGroup)
    count = 0
    return
  else
    newMarker = new L.marker(e.latlng).addTo(map)
    count= count+1
    return

为什么我会收到意外的if语句,我认为我的代码是正确缩进的?!

1 个答案:

答案 0 :(得分:0)

找到解决方案。 Notepad ++表现得很奇怪,当它看到4个白色空格时立即添加标签,而coffeescript不喜欢它。只需在Notepad ++中关闭该选项。