0
在我的Web應用程序中使用以下代碼時,我從ESLint獲得以下返回值。我寧願使用這種循環方法而不是增量I方法。這個錯誤是什麼意思?這是否意味着循環的使用有問題?eslint:「解析錯誤:意外的令牌」
錯誤消息:
Parsing error: Unexpected token of
實際影響的代碼:
renderCanvas: function() {
console.log("Rendering Model");
var canvases = document.getElementsByClassName("DesignerCanvas");
for (var canvas of canvases) {
var ctx = canvas.getContext('2d');
ctx.beginPath();
// String for Hanging
ctx.closePath();
ctx.beginPath();
// Top Trimming
ctx.closePath();
ctx.beginPath();
// Outter Shade Body
ctx.closePath();
ctx.beginPath();
// Bottom Trimming
ctx.closePath();
ctx.beginPath();
// Inner Shade Body
ctx.closePath();
}
}
它看起來像ESLint不理解'for..of',因爲它抱怨''的' – slebetman