我有,我從JSON解析記錄:解析時如何將字符串JSON值膨脹到對象?
import Json.Decode exposing (..)
import Json.Decode.Pipeline exposing (..)
type alias Article = {
pubDate: String
}
articleDecoder : Decoder Article
articleDecoder =
decode Article
|> required "pubDate" string
現在,如果我想使用Date
爲pubDate
而不是原始字符串,我該如何更改代碼「膨脹」與Date.fromString
JSON的價值?