0
次のJSON構造のタグを解析するのに問題があります。パーサーは、それがtags :: !Array
であると宣言したときにのみ動作します。宣言すると失敗します。tags :: [Tag]
Haskell Aeson入れ子配列JSON
なぜですか?
{
"response": {
"status": "ok",
"results": [
{
"type": "article",
"fields": {
"wordcount": "497"
},
"tags": [
{
"id": "profile/barryglendenning"
}
]
}
]
}
}
data Field = Field{
wordcount :: Int
} deriving (Show)
instance FromJSON Field where
parseJSON (Object o) = Field <$> (o .: "wordcount")
parseJSON _ = mzero
data Tag = Tag{
id :: Text
} deriving (Show)
instance FromJSON Tag where
parseJSON (Object o) = Tag <$> (o .: "id")
parseJSON _ = mzero
data SearchResult = SearchResult {
type:: Text,
field :: Field,
tags :: !Array
} deriving (Show)
instance FromJSON SearchResult where
parseJSON (Object o) = do
let t1 = o .: "type"
let t2 = o .: "fields"
let t3 = o .: "tags"
SearchResult <$> t1 <*> t2 <*> t3
parseJSON _ = mzero
data ContentrResult = ContentrResult {
results :: [SearchResult],
status :: Text
} deriving (Show)
instance FromJSON ContentrResult where
parseJSON (Object o) = do
r <- o .: "response"
ContentrResult <$> r .: "results"
<*> r .: "status"
parseJSON _ = mzero
あなたが取得している正確なエラーとは何ですか? – user2847643
おそらくあなたの問題とは関係ありませんが、私はレコードフィールドに 'id'という名前をつけません。なぜならあなたは前奏曲とあいまいであるからです。 –
ところで、 'type'フィールドの名前は構文エラーです –