可能非常简单,但是我在文档中找不到答案。
我有以下API网址,我希望使用“ location_description”的其他过滤条件进行扩展。当前它会过滤“居住”:
https://data.cityofchicago.org/resource/6zsd-86xi.json?$$ app_token = xxxxxxxxx&primary_type = BURGLARY&location_description = RESIDENCE
但是,我想将其扩展为包括“公寓,住宅车库”。
所以当我尝试这种格式时:
https://data.cityofchicago.org/resource/6zsd-86xi.json?$$ app_token = xxxxxxxxx&primary_type = BURGLARY&location_description =住宅,公寓,住宅车库
它不起作用。
尝试了不同的格式,包括“”,()等,但没有运气。
问题:如何正确设置此URL的格式,以便可以对多个“ location_description”进行过滤?
感谢您的帮助。
答案 0 :(得分:0)
为此,使用where
语句可能会更容易,因为它类似于SQL查询,并且可能更熟悉(并且更容易查看常规查询文档)。现在,我已经删除了$$app_token
以简化URL:
https://data.cityofchicago.org/resource/6zsd-86xi.json?$where=primary_type='BURGLARY' AND (location_description='RESIDENCE' OR location_description='APARTMENT' OR location_description='RESIDENCE-GARAGE')