我正在从yahoo API获取天气信息,但是在单个请求中我只能获得单个地点。我想在单个请求中一次获得多个城市的信息。 请帮助我获得多个城市供稿。
答案 0 :(得分:1)
使用他们提供的here网络测试平台,您可以测试不同的YQL查询。
YQL是一种类似SQL的语言,它支持OR
和IN
等运算符。
我对你的问题的测试是这样的:
select * from weather.forecast where woeid in (select woeid from geo.places(1) where text in ("nome, ak", "chicago, il", "dallas, tx"))
这为3个城市带来了天气预报。