1

在下面的函数中,我遍历了一个包含字符串的数组(事件)。字符串描述了从另一个网络应用程序中提取的事件(犯罪或事故),我正在做的是划分和计算不同的犯罪/事故并将它们放在一个对象中(INCIDENT_MATCHES)。

但是,一些文本字符串可能包含我搜索的几个关键字(例如“gunfire”和“battery”),但我不想要。相反,我只想计算第一个找到的单词,如果找到更多关键字,则应忽略它们。

怎么可能做到这一点?

var INCIDENT_MATCHES = {
    battery: /\w*(bråk)\w*|överfall|slagsmål|slogs|misshandel|misshandlad|\w*(tjuv)\w*/ig,
    burglaries: /snattade|snattare|snatta|inbrott|bestulen|stöld|\w*(tjuv)\w*/ig,
    robberies: /\w*(rån)\w*|personrån|\w*(ryckning)\w*|väskryckt*/ig,
    gunfire: /skottlossning|skjuten|sköt/ig,
    drugs: /narkotikabrott/ig,
    vandalism: /skadegörelse|klotter|\w*(klottra)\w*/ig,
    trafficAccidents: /(trafik|bil)olycka|(trafik|bil)olyckor|\w*(personbil)\w*|singelolycka|kollision|\w*(kollidera)\w*|påkörd|trafik|smitningsolycka/ig,
};

var j = 0,
incidentCounts = {},
incidentTypes = Object.keys(INCIDENT_MATCHES);

incidents.forEach(function(incident) {
    matchFound = false;

    incidentTypes.forEach(function(type) {
        if(typeof incidentCounts[type] === 'undefined') {
            incidentCounts[type] = 0;
        }
        var matchFound = incident.match(INCIDENT_MATCHES[type]);

        if(matchFound){
            matchFound = true;
            incidentCounts[type] += 1;
        }
    });

    j++;
});
4

2 回答 2

1

您可以false从“每个”处理程序返回以停止迭代。

    if(matchFound){
        matchFound = true;
        incidentCounts[type] += 1;
        return false;
    }

编辑- 你会想要(我认为)在外循环结束时进行另一个测试:

  j++; // I don't understand what that does ...
  if (matchFound) return false;
于 2013-02-18T16:45:11.123 回答
0

我在下面找到了这个解决方案。我所做的是以下内容:

  1. 我用“每个”替换了第二个 forEach 语句
  2. 将“return false”放入“if(matchFound)”中
  3. 添加了“else { return true; }”,以便在未找到匹配项时继续循环。

编码:

incidents[2].forEach(function(incident) {
    matchFound = false;

    incidentTypes.every(function(type) {
        if(typeof crimesPerType[type] === 'undefined') {
            crimesPerType[type] = 0;
    }
    var matchFound = incident.match(INCIDENT_MATCHES[type]);

    if(matchFound){
        crimesPerType[type] += 1;
        if (type == 'trafficAccidents') {
            incidents[3][j].push('traffic');
        }
        else {
            incidents[3][j].push('crime');
        }
        return false;
    }
    else {
        return true;
    }
});
于 2013-02-18T17:52:47.080 回答