假设我有一个这样的 json 对象:
{
"results": [
{
"failed": "no",
"data": "another string"
},
"failed": "no",
"skipped": true
}
}
有没有办法去除在 ansible playbook 中定义的“跳过”的任何对象的 json?所以我会
{
"results": [
{
"failed": "no",
"data": "another string"
}
}