将ECMAScript 6的箭头功能转换为常规功能

时间:2020-02-21 06:52:09

标签: javascript

我正在尝试将下面的脚本转换为正常功能,但不了解如何。

该脚本计算数组(productList.Lockers)中实例(模型)的数量,并将其附加到目标div。

productList.Lockers.forEach(o => $('#' + o.model).siblings('#modelcount').text((i, t) => (  parseInt(t, 10) || 0) + 1 ));
var modelCount = document.getElementById('allcount');
modelCount.innerHTML = productList.Lockers.length;

1 个答案:

答案 0 :(得分:1)

似乎很简单:

productList.Lockers.forEach(function(o) {
  return $('#' + o.model).siblings('#modelcount').text(function(i, t) {
    return (parseInt(t, 10) || 0) + 1
  })
})