json - 使用字符串过滤 JMESPath

标签 json search substring contains jmespath

尽管进行了大量研究,我还是找不到解决方案。我被 contains 函数困住了。 我有这个 Json 文件:

    {
  "from": "Api",
  "success": true,
  "message": "",
  "errors": [],
  "data": {
    "operations": [
      {
        "IDOperation": 100,
        "DateEcriture": "2019-01-02",
        "Comment": "Invoice Nh5 numero 152",
        "sous_operations": []
      },
      {
        "IDOperation": 101,
        "DateEcriture": "2019-01-02",
        "Comment": "one other thing",
        "sous_operations": []
      },
      {
        "IDOperation":102,
        "DateEcriture": "2019-01-02",
        "Comment": "an other thing",
        "sous_operations": [{"ID-sous-Operation": 103,
                           "DateEcriture": "2019-01-02",
                           "Comment": "Invoice Nh15 numero 341"}]
      }]
   } 
}

我想过滤“注释”字段中包含“发票”一词的对象以获得以下结果:

{"operations": [
      {
        "IDOperation": 100,
        "DateEcriture": "2019-01-02",
        "Comment": "Invoice Nh5 numero 152"
      },
      {
        "IDOperation": 103,
        "DateEcriture": "2019-01-02",
        "Comment": "Invoice Nh15 numero 341"
      }]
}

感谢您的帮助

最佳答案

您还没有说明您在哪一部分上遇到困难。我猜它正在处理嵌套子操作,因为这对我来说似乎是最难和最不明显的部分,但我会尽力涵盖所有内容。

这是我的假设:

  • 输入始终由带有字段data的对象组成。
  • data 字段始终是一个带有字段 operations 的对象。
  • 操作始终是一个数组。
  • operations 的每个成员都有相同的四个字段:IDOperationDateEcritureComment sous_操作
  • sous_operations 始终是一个数组。
  • sous_operations 的每个成员都具有相同的三个字段:ID-sous-Operation (!)、DateEcritureComment
  • 特别是,子操作的嵌套深度不得超过一层。
  • 所有名为 Comment 的字段都是字符串。
  • 您想要查找 Comment 字段中包含“Invoice”(不区分大小写)的工序和子工序。
  • 您想要输出它们,但不想输出它们可能具有的任何子操作。
  • 您想要将 ID-sous-Operation 重命名为 IDOperation
  • 输出应由一个包含单个字段操作的对象组成,该字段是选定和转换操作的数组。

我认为这符合你的要求:

{
  operations:
    data.operations|
    map(
      &[
        [
          {
            IDOperation:IDOperation,
            DateEcriture:DateEcriture,
            Comment:Comment            
          }
        ],
        map(
          &{
            IDOperation:"ID-sous-Operation",
            DateEcriture:DateEcriture,
            Comment:Comment
          },
          sous_operations
        )
      ],
      @
    )|
    [][]|
    [?contains(Comment,`"Invoice"`)]
}

首先,我们用一个二元数组替换每个操作。第一个成员是一个单元素数组,包含操作的字段,但不包含其子操作。第二个成员是所有操作的子操作的数组。 (此时我们还重命名了子操作ID字段。)

现在我们的操作是一个由简化操作数组组成的(两个元素)数组组成的数组。我们使用展平运算符两次来获得一个简单的单层数组。最后我们简单地使用 contains 方法对其进行过滤。

这是输出:

$ jp --filename input1.json --expr-file filter.jmespath
{
  "operations": [
    {
      "Comment": "Invoice Nh5 numero 152",
      "DateEcriture": "2019-01-02",
      "IDOperation": 100
    },
    {
      "Comment": "Invoice Nh15 numero 341",
      "DateEcriture": "2019-01-02",
      "IDOperation": 103
    }
  ]
}

关于json - 使用字符串过滤 JMESPath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60380325/

相关文章:

json - 在 grails 中解析 JSON 时如何获得真正的空值而不是 JSONObject.NULL 值

node.js - Sequelize | Node.js,在两个数字之间搜索

javascript - 如何匹配由一个字符分割的多个子字符串?

php - Mysql 查询不通过 JSON 发送响应

ios - 将 Twitter 公共(public)提要作为 JSON 获取

mysql - 如何对网站的 MySQL 表执行搜索

ios substr 从结束

excel - 从文本中解析子字符串

javascript - 需要帮助来解决 - Uncaught ReferenceError : data is not defined

Android - Youtube API V3 搜索不工作