我有一个 JSON 响应,它是一个哈希数组:
[{"project" => {"id" => 1, "name" => "Internal"},
{"project" => {"id" => 2, "name" => "External"}}]
我的代码如下所示:
client = HTTP::Client.new(url, ssl: true)
response = client.get("/projects", ssl: true)
projects = JSON.parse(response.body) as Array
这给了我一个 Array 但似乎我需要对元素进行类型转换才能实际使用它们,否则我会得到undefined method '[]' for Nil (compile-time type is (Nil | String | Int64 | Float64 | Bool | Hash(String, JSON::Type) | Array(JSON::Type)))
.
我试过as Array(Hash)
了,但这给了我can't use Hash(K, V) as generic type argument yet, use a more specific type
。
如何指定类型?