json - 从 JSON 文件中读入数据

标签 json elm

假设我有一个位于 http://www.randomurl.com/jobs.json 的 JSON 文件,它看起来像这样:

{ "jobs": [
  { "task" : "turn burgers" ,
    "who" : "Anni" ,
    "place" : "Quick"}
  , 
  { "task" : "dishes" ,
    "who" : "Bob" ,
    "place" : "McDo"}
]}

我做了一个解码器:
type alias Job = {
  task : String
, who : String
, place: String 
}

type alias Jobs  = List Job

decoder : Decoder Job
decoder =
  Decode.object3 Job
    (Decode.at ["attributes", "task"] Decode.string)
    (Decode.at ["attributes", "who"] Decode.string)
    (Decode.at ["attributes", "place"] Decode.string)

decoderColl : Decoder Jobs
decoderColl =
  Decode.object1 identity
    ("jobs" := Decode.list decoder)

如何使用我的解码器从该网站读取文件?我想我需要 Http 包,但我不知道如何应用它。

最佳答案

首先 - 您的 decoder功能略有关闭。没有中间的“属性”对象,因此您可以将其更改为:

decoder : Decoder Job
decoder =
  Decode.object3 Job
    ("task" := Decode.string)
    ("who" := Decode.string)
    ("place" := Decode.string)

你是对的,你需要 elm-http包裹。使用它,您可以创建一个 Http.get将结果映射到 Action 的任务。

作为一个基本示例,让我们制作一个按钮,从 url 中下拉作业列表。我们需要一个 GetJobs触发 HTTP 请求的操作,以及 ShowJobs请求成功返回时将触发的操作。

假设我们的 Action 类型如下所示:

type Action
  = NoOp
  | GetJobs
  | ShowJobs (Maybe Jobs)

然后我们可以创建一个 getJobs构建可以运行的任务的函数。对于这个简单的例子,我们可以使用 Task.toMaybe抑制任何 HTTP 或 JSON 解码错误。

getJobs : Effects Action
getJobs =
  Http.get decoderColl jobsUrl
    |> Task.toMaybe
    |> Task.map ShowJobs
    |> Effects.task

为了将它们粘合在一起,我们将使用 StartApp因为它让我们可以使用任务和效果。这是一个可以在本地构建的工作示例,假设 jobs.json 存在于同一目录中。

import Http
import StartApp
import Effects exposing (Effects,Never)
import Task
import Html exposing (..)
import Html.Events exposing (..)
import Json.Decode as Decode exposing (Decoder, (:=))

jobsUrl = "./jobs.json"

-- StartApp plumbing
app =
  StartApp.start { init = init, view = view, update = update, inputs = [] }

main =
  app.html

port tasks : Signal (Task.Task Never ())
port tasks =
  app.tasks


type Action
  = NoOp
  | GetJobs
  | ShowJobs (Maybe Jobs)

type alias Model =
  { jobs : Maybe Jobs }

init =
  ({ jobs = Nothing }, Effects.none)

update action model =
  case action of
    NoOp ->
      (model, Effects.none)
    GetJobs ->
      ({ model | jobs = Nothing }, getJobs)
    ShowJobs maybeJobs ->
      ({ model | jobs = maybeJobs }, Effects.none)

view address model =
  div []
    [ button [ onClick address GetJobs ] [ text "Click to get jobs!" ]
    , viewJobs model.jobs
    ]

viewJobs maybeJobs =
  let
    viewJob job =
      li [] [ text ("Task: " ++ job.task ++ "; Who: " ++ job.who ++ "; Place: " ++ job.place) ]
  in
    case maybeJobs of
      Nothing ->
        div [] [ text "No jobs to display. Try clicking the button" ]
      Just jobs ->
        ul [] (List.map viewJob jobs)

-- This is the key to map the result of the HTTP GET to an Action
-- Note: Task.toMaybe swallows any HTTP or JSON decoding errors
getJobs : Effects Action
getJobs =
  Http.get decoderColl jobsUrl
    |> Task.toMaybe
    |> Task.map ShowJobs
    |> Effects.task

-- An alternative to Task.toMaybe which dumps error information to the console log
toMaybeWithLogging : Task.Task x a -> Task.Task y (Maybe a)
toMaybeWithLogging task =
  Task.map Just task `Task.onError` (\msg -> Debug.log (toString msg) (Task.succeed Nothing))

-- The Job type aliases from the question
type alias Job = {
  task : String
  , who : String
  , place: String 
}

type alias Jobs  = List Job

-- The updated Job decoder
decoder : Decoder Job
decoder =
  Decode.object3 Job
    ("task" := Decode.string)
    ("who" := Decode.string)
    ("place" := Decode.string)

decoderColl : Decoder Jobs
decoderColl =
  Decode.object1 identity
    ("jobs" := Decode.list decoder)

关于json - 从 JSON 文件中读入数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34357902/

相关文章:

python - 如何返回特定的 json 字段?

json - 在python中从json获取 key

elm - Elm 的余数运算符是什么

codemirror - Elm 有可嵌入的代码编辑器吗?

elm - 使用本地包

python - 在 python 中解析 facebook graph api json 时遇到问题

json - 在 golang 中将结构与其 json 逻辑分开?

javascript - JSON 和 javascript 对象之间的区别

elm - 有没有一种在 elm 中插入随机 HTML/JS 片段的好方法?

records - 替代 Elm 记录扩展