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.
我调用了一个 HTTP API 并将其作为响应
{"balance":0}
如何使用 rails 提取并获得“0”?
斯托克斯
仅供参考,我使用了遏制 gem(curl)来调用 API 调用……如果这有帮助的话
它是一个哈希值。所以把它当作哈希一样简单
{"balance" => 0}.each{ |k, v| puts v }
如果响应 HASH 只有元素,你可以这样做
{"balance" => 0}.values.first