1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ElmでpreventDefaultなフォームを作る

1
Posted at

Elmのバージョンは0.19
以下の onSubmitWithPrevented のような関数を定義すればよい。

import Json.Decode as JD

-- 省略...

onSubmitWithPrevented msg =
    Html.Events.custom "submit" (JD.succeed { message = msg, stopPropagation = True, preventDefault = True })

view : Model -> Browser.Document Msg
view model =
  {
    title = "Simple form example",
    body = [
      Html.form [onSubmitWithPrevented StartsLoggingIn] [
        div [] [
          label [] [
            text "email:",
            input [type_ "email", placeholder "Your email", value model.newLogin.email, onInput UpdatesLoginEmail] []
          ]
        ],
        div [] [
          label [] [
            text "password:",
            input [type_ "password", placeholder "Your password", value model.newLogin.password, onInput UpdatesLoginPassword] []
          ]
        ],
        div [] [
          button [] [text "login"]
        ]
      ]
    ]
  }

参考: https://stackoverflow.com/questions/52541501/why-cant-i-use-onwithoptions-in-elm-0-19

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?