0
我在使用JsonPath檢查具有字段前名稱空間的json時遇到問題。我一直無法從谷歌中找到任何東西,或者查看現有問題或文檔。我一直無法獲得任何工作。我有JSON的下面的代碼片段:如何使用JsonPath處理具有名稱空間的JSON
{
"_embedded" : {
"bb:list" : [ {
"id" : "id",
"label" : "label",
"description" : "description",
"timezone" : "timezone",
"postalAddress" : {
"addressCountry" : "country",
"addressLocality" : "city",
"addressRegion" : "state",
"postalCode" : "postal code",
"streetAddress" : "street address"
}
} ]
}
}
而且我想檢查BB:列表欄,看看有多少項目都在上面。這JsonPath表達似乎不工作:
「$ ._ embedded.bb:list」
如果我刪除 「BB」,然後使用該作品 「$ ._ embedded.list」,所以它的BB:它似乎並不喜歡。