如果多个条件匹配,则 JsonPath 选择对象字段

JsonPath selecting object field if multiple condition matches

{
    "userName": "test"
    "customer": {
        "mode": "BANK",
        "modeDetails": {
            "accountNo": "12345678901001",
            "walletId": "11324354@paypal"
        }
    }
}

如果 mode="BANK" 或如果 mode=WALLET 那么 walletId 应该 selected,我使用 jsonpath 到 select accountNo。我试过表达式 $.customer.modeDetails[$.customer.mode=='BANK'].accountNo 但它不起作用。请帮我解决这个问题。

public static void main(String[] args)  {   
    String jsonString = "{\r\n" + 
            "    \"userName\": \"test\",\r\n" + 
            "    \"customer\": {\r\n" + 
            "        \"mode\": \"BANK\",\r\n" + 
            "        \"modeDetails\": {\r\n" + 
            "            \"accountNo\": \"12345678901001\",\r\n" + 
            "            \"walletId\": \"11324354@paypal\"\r\n" + 
            "        }\r\n" + 
            "    }\r\n" + 
            "}";
    DocumentContext docCtx = JsonPath.parse(jsonString);
    JsonPath jsonPath = JsonPath.compile("$..[?(@.customer.mode==\"BANK\")].customer.modeDetails.accountNo");
    List<String> accounts = docCtx.read(jsonPath);
    System.out.println(accounts);
}

结果

["12345678901001"]