gpt4 book ai didi

json - ELM 解析嵌套的 json

转载 作者:行者123 更新时间:2023-12-04 11:48:54 25 4
gpt4 key购买 nike

我有一个带有多个注释的 json 数组,可以嵌套。

例子:

[
{
"author": "john",
"comment" : ".....",
"reply": "",
},
{
"author": "Paul",
"comment" : ".....",
"reply": [
{
"author": "john",
"comment" : "nested comment",
"reply": [
{
"author": "Paul",
"comment": "second nested comment"
}
]
},
{
"author": "john",
"comment" : "another nested comment",
"reply": ""
}
]
},
{
"author": "Dave",
"comment" : ".....",
"reply": ""
},
]

所以它是一个评论列表,每个评论都可以有一个无限数量的回复。
Json.Decode.list我可以解码第一级评论,但是如何检查是否有回复然后再次解析?

这是我尝试做的事情的简化版本。我实际上是在尝试解码 reddit 的评论。 exemple

最佳答案

Elm 不允许您创建递归记录类型别名,因此您必须为 Customer 使用联合类型。 .您可能还需要一个方便的函数来创建用户,以便您可以使用 Json.map3 .

您的示例 json 有一个奇怪的地方:有时 reply是一个空字符串,有时它是一个列表。您需要一个特殊的解码器来将该字符串转换为空列表(假设在此上下文中空列表与空列表同义)。

由于您有递归类型,您需要使用 lazy用于解码子注释以避免运行时错误。

import Html exposing (Html, text)
import Json.Decode as Json exposing (..)


main : Html msg
main =
text <| toString <| decodeString (list commentDecoder) s


type Comment
= Comment
{ author : String
, comment : String
, reply : List Comment
}


newComment : String -> String -> List Comment -> Comment
newComment author comment reply =
Comment
{ author = author
, comment = comment
, reply = reply
}


emptyStringToListDecoder : Decoder (List a)
emptyStringToListDecoder =
string
|> andThen
(\s ->
case s of
"" ->
succeed []

_ ->
fail "Expected an empty string"
)


commentDecoder : Decoder Comment
commentDecoder =
map3 newComment
(field "author" string)
(field "comment" string)
(field "reply" <|
oneOf
[ emptyStringToListDecoder
, list (lazy (\_ -> commentDecoder))
]
)


s =
"""
[{
"author": "john",
"comment": ".....",
"reply": ""
}, {
"author": "Dave",
"comment": ".....",
"reply": ""
}, {
"author": "Paul",
"comment": ".....",
"reply": [{
"author": "john",
"comment": "nested comment",
"reply": [{
"author": "Paul",
"comment": "second nested comment",
"reply": ""
}]
}, {
"author": "john",
"comment": "another nested comment",
"reply": ""
}]
}]
"""

(您的 json 在其他方面也有一些偏差:列表的最后部分之后有一些额外的逗号,并且缺少 reply 字段之一)

关于json - ELM 解析嵌套的 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39552307/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com