4

我正在尝试使用 jsonPath 和 pick 函数来确定是否需要根据当前域运行规则。我正在做的简化版本在这里:

    global 
{
    dataset shopscotchMerchants <- "https://s3.amazonaws.com/app-files/dev/merchantJson.json" cachable for 2 seconds
}

rule checkdataset is active
{
    select when pageview ".*" setting ()
    pre
    {
        merchantData = shopscotchMerchants.pick("$.merchants[?(@.merchant=='Telefora')]");
    }
    emit 
    <|
        console.log(merchantData);
    |>
}

我期望的控制台输出是 telefora 对象,而不是我从 json 文件中获取所有三个对象。

如果我使用 MercerID==16 而不是 Mercer=='Telefora',那么它会很好用。我认为 jsonPath 也可以匹配字符串。尽管上面的示例没有针对 json 的 MercerDomain 部分进行搜索,但我遇到了同样的问题。

4

1 回答 1

5

您的问题来自这样一个事实,如文档中所述,字符串相等运算符是eq,neqlike. ==仅适用于数字。在您的情况下,您想测试一个字符串是否等于另一个字符串,这是eq字符串相等运算符的工作。

只需在您的 JSONpath 过滤器表达式中进行交换==eq您就可以开始了:

    global 
{
    dataset shopscotchMerchants <- "https://s3.amazonaws.com/app-files/dev/merchantJson.json" cachable for 2 seconds
}

rule checkdataset is active
{
    select when pageview ".*" setting ()
    pre
    {
        merchantData = shopscotchMerchants.pick("$.merchants[?(@.merchant eq 'Telefora')]"); // replace == with eq
    }
    emit 
    <|
        console.log(merchantData);
    |>
}

我在自己的测试规则集中对此进行了测试,其来源如下:

ruleset a369x175 {
  meta {
    name "test-json-filtering"
    description <<

    >>
    author "AKO"
    logging on
  }

  dispatch {
      domain "exampley.com"
  }

  global {
    dataset merchant_dataset <- "https://s3.amazonaws.com/app-files/dev/merchantJson.json" cachable for 2 seconds
  }

  rule filter_some_delicous_json {
    select when pageview "exampley.com"
    pre {
        merchant_data = merchant_dataset.pick("$.merchants[?(@.merchant eq 'Telefora')]");
    }
    {
        emit <|
            try { console.log(merchant_data); } catch(e) { }
        |>;
    }
  }
}
于 2011-04-06T01:57:32.310 回答