注意:我原来的问题是删除除了最后N
个以外的所有记录,但是用CKAN API猜测这样的事情是不可能的,我想出了以下解决方案:
total
获取datastore_search
大量记录。first
记录的ID。first
记录ID至total-N
的所有记录的ID。所以,我的问题是:如何在单个查询中删除所有已识别的ID?我尝试了以下内容:
$ curl -X POST "http://demo.ckan.org/api/3/action/datastore_delete" -d '{"filters":{"_id":1,"_id":2,"_id":3},"force":"true","resource_id":"a43bfb04-7a8b-4624-a06a-25f4165e5b2a"}' -H "Authorization: xxx"
{"help": "http://demo.ckan.org/api/3/action/help_show?name=datastore_delete", "success": true, "result": {"filters": {"_id": 3}, "resource_id": "a43bfb04-7a8b-4624-a06a-25f4165e5b2a"}}
但只删除了有关最后一个ID(3
)的记录。
当然,阵列也不起作用:
$ curl -X POST "http://demo.ckan.org/api/3/action/datastore_delete" -d '{"filters":[{"_id":1},{"_id":2},{"_id":3}],"force":"true","resource_id":"a43bfb04-7a8b-4624-a06a-25f4165e5b2a"}' -H "Authorization: xxx"
{"help": "http://demo.ckan.org/api/3/action/help_show?name=datastore_delete", "success": false, "error": {"__type": "Validation Error", "filters": ["filters must be either a dict or null."]}}
有什么想法吗?或者我应该对每个要删除的记录执行查询吗?
答案 0 :(得分:2)
自动应答。在尝试了几种组合后,我发现它有效:
$ curl -X POST "http://demo.ckan.org/api/3/action/datastore_delete" -d '{"filters":{"_id":[1,2]},"force":"true","resource_id":"a43bfb04-7a8b-4624-a06a-25f4165e5b2a"}' -H "Authorization: xxx"
即。字典必须分别与_id
的单个(键,值)对,_id
和数组一起发送。