私はElm Form https://github.com/etaque/elm-formを使用していますが、パスワードとパスワードの確認フィールドが一致していることを検証する2つのフィールドの検証はできません。ElmとElm-Formの2つのフィールドを検証します
これは私がこれまで持っているものです。
validate : Validation String RegUser
validate =
map6 RegUser
(field "email" email)
(field "password" (string |> andThen nonEmpty))
(field "passwordConfirmation" (string |> andThen nonEmpty))
(field "firstName" (string |> defaultValue ""))
(field "lastName" (string |> defaultValue ""))
(field "companyName" (string |> defaultValue ""))
全体のコード:任意の助けhttps://github.com/werner/madison-elm/blob/master/src/elm/Components/Register/Models.elm
感謝。