0
我正在做一個http請求,並且我的響應是一個對象數組。每個對象如下Elm JSON解碼器對象陣列
obj = {
title: "Some Title",
words: [ "word1", "word2", "word3", "word4" ]
}
這裏是我的解碼器至今:
type alias ThisRes = List ResObj
type alias ResObj =
title: String
words: List String
decoded : Decoder ThisRes
decoded =
decode ThisRes
我似乎無法得到正確的解碼器,並可以提供將不勝感激任何幫助。