Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 Basecamp 的 API 只返回活动项目?无论我尝试什么,我总是会拿回我的整个项目清单,而且它是巨大的。
这是我认为应该起作用的:
Basecamp.establish_connection!('myhost.basecamphq.com', 'my_user', 'my_pass') @projects = Basecamp::Project.find(:all, params => { :status => 'active' } )
不幸的是没有。你能做的最好的事情是:
Basecamp::Project.find(:all).reject{|p| p.status == "archived" }
从我可以从 API 文档中收集到的信息来看,没有办法做到这一点。