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.
我正在用 Ruby 编写 API 包装器,但不知道如何继续。HTTParty非常好,为我处理一切,但HTTParty::get它返回一个HTTParty::Response对象。
HTTParty
HTTParty::get
HTTParty::Response
我想知道,是否更好:
我正在做一个我实际上做#3的项目。我使用 HTTParty 将数据转换为散列,然后使用散列创建一组相关的 ActiveRecord 类。在 Ruby 类中操作数据(例如进行验证)比将其保留在原始哈希中更容易。