web-dev-qa-db-ja.com

予期しないトークン演算子«=»、予期される句読点«、»

次のエラーが発生します

解析エラー:予期しないトークン演算子"="、予期される句読点"、"159行、26列

これは私のコードです

  function fitBounds(type="all", shape=null) {
    var bounds = new google.maps.LatLngBounds();

    if ( type == "all" ){
      if ((circles.length > 0) | (polygons.length > 0)){
        $.each(circles, function(index, circle){
          bounds.union(circle.getBounds());
        });
        $.each(polygons, function(index, polygon){
          polygon.getPath().getArray().forEach(function(latLng){
            bounds.extend(latLng);
          });
        });
      }
    }
    else if ( (type == "single") && (shape != null) ) {
      if (shape.type == google.maps.drawing.OverlayType.MARKER) {
        marker_index = markers.indexOf(shape);
        bounds.union(circles[marker_index].getBounds());
      }
      else {
        shape.getPath().getArray().forEach(function(latLng){
          bounds.extend(latLng);
        });
      }
    }

    if (bounds.isEmpty() != true)
    {
      map.fitBounds(bounds);
    }
  }
12
Harsha M V

デフォルトパラメータ を使用しようとしています。これは 制限付きサポート を使用したJavaScriptの最先端の機能です。

JS Lintは、ES6オプションをオンにしない限り、それらを拒否します。

25
Quentin

@Quentinは正解です。es6オプションが必要です。

JSLintが失敗する原因は他にもたくさんありますが、特に「強制演算子」である==の使用- JSLint on equality -と bitwiseオプションを確認してください) jslintセクション (jslintディレクティブへの直接のリンクはありません。考えていません。そのため、そのすぐ上にリンクしました)。 @AxelHが示唆するように、あなたが本当に私たちに聞きたいことがもっとあるでしょう。 ; ^)

JSLint.com にリンクしているバージョンは、今日のバージョンです。 /*jslintタグ を含む、先頭のes6ディレクティブ行に注意してください。

/*jslint es6, white, browser */
/*global google, $ */

// These weren't declared, so I'm assuming they're
// within scope in your snippet's context. 
// I put others that felt like globals (google, $) 
// into globals, above.
var marker_index; 
var markers;
var circles;
var polygons;
var map;

function fitBounds(type="all", shape=null) {
  var bounds = new google.maps.LatLngBounds();

  if ( type === "all" ){
    // not sure why you're using bitwise `|` here. 
    // I think this'll be equivalent, though you should
    // be able to set `bitwise` as an option if it's not.
    // Still, you're evaluating to booleans, so `|` doesn't 
    // seem appropriate here.
    if ((circles.length > 0) || (polygons.length > 0)){
      $.each(circles, function(ignore, circle){
        bounds.union(circle.getBounds());
      });
      $.each(polygons, function(ignore, polygon){
        polygon.getPath().getArray().forEach(function(latLng){
          bounds.extend(latLng);
        });
      });
    }
  }
  else if ( (type === "single") && (shape !== null) ) {
    if (shape.type === google.maps.drawing.OverlayType.MARKER) {
      marker_index = markers.indexOf(shape);
      bounds.union(circles[marker_index].getBounds());
    }
    else {
      shape.getPath().getArray().forEach(function(latLng){
        bounds.extend(latLng);
      });
    }
  }

  if (!bounds.isEmpty())
  {
    map.fitBounds(bounds);
  }
}
2
ruffin

@クエンティンは彼の答えで正しいです。彼が言及した理由により、構文エラーが発生します。私がそれに追加できるのは、EC6構文を削除して、関数を古い良質のJSに書き直そうとする可能性があることです。

// change from
function fitBounds(type="all", shape=null)

// change to
function fitBounds(type="all", shape)
1
Lukasz Dynowski

この問題の回避策は次のとおりです。

function fitBounds(type, shape_aux) {
    var bounds = new google.maps.LatLngBounds();
    if(typeof type === "undefined") {
      type = "all";
    }
    if(typeof shape_aux !== undefined) {
     shape = shape_aux;
    } else {
     shape = null;
    }
    if ( type == "all" ){
      if ((circles.length > 0) | (polygons.length > 0)){
        $.each(circles, function(index, circle){
          bounds.union(circle.getBounds());
        });
        $.each(polygons, function(index, polygon){
          polygon.getPath().getArray().forEach(function(latLng){
            bounds.extend(latLng);
          });
        });
      }
    }
    else if ( (type == "single") && (shape != null) ) {
      if (shape.type == google.maps.drawing.OverlayType.MARKER) {
        marker_index = markers.indexOf(shape);
        bounds.union(circles[marker_index].getBounds());
      }
      else {
        shape.getPath().getArray().forEach(function(latLng){
          bounds.extend(latLng);
        });
      }
    }

    if (bounds.isEmpty() != true)
    {
      map.fitBounds(bounds);
    }
  }
1
libnac