开发者问题收集

原始异常:无法读取 null 的属性‘0’

2018-01-18
62

是的,我知道这是一个著名的可能重复的问题。但我不知道如何在我的代码中解决它。

let newVlaue = [];
$(".displayInlineBlock").each(function() {
  if ($(this).find("input").is(':checked') && !$(this).find("label").hasClass("allselect")) {
    if ($(this).find("input").attr('id')) {
      let chosenValue = $(this).find("input").attr('id');
      let tempValue = chosenValue.match(/\d+/g);
      tempValue = parseInt(tempValue[0]);
      if (tempValue == 0) {
        newVlaue.push(tempValue);
      } else {
        newVlaue.push(tempValue - 1);
      }
    }
  }
});

感谢您的帮助

1个回答

您需要检查 String#match 的结果是否为 null 。如果不是,请继续。

let tempValue = chosenValue.match(/\d+/g); // result is null if no numbers are found
if (tempValue !== null) {
    // proceed
}

如果不匹配值应包含零,您可以添加一个包含零的默认数组。

let tempValue = chosenValue.match(/\d+/g) || [0];
Nina Scholz
2018-01-18