如何让 YQL 仅返回新内容(基于给定日期)
需要知道如何让 YQL 仅返回比我指定的日期更新的数据。
谢谢
Need to know how to get YQL to return only data that's newer than a date that I specify.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您正在查询的数据表及其背后的 Web 服务。
例如,Facebook 图表允许您设置
since
查询参数,并且您可以在数据表上映射一个key
。如果没有,请过滤结果中的
date
元素。这应该可行,前提是您的日期格式设置使字母顺序与时间顺序等效。
如果您的查询类似于
将过滤器放在管道之前:
It depends on the Data Table you are querying and the web service that's behind it.
For example, facebook graph allows you to set a
since
query parameter, and you can map akey
on it on your Data Table.If not, filter on the
date
element in you resultsThis should work, provided that your dates are formatted in a way that makes alphabetical ordering equivalent to temporal order.
If your query is something like
put the filter before the pipes: