作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将Elm应用程序从0.18升级到0.19。
我被这个错误困住了-
Detected errors in 1 module.
-- BAD IMPORT ---------------------------------------- src/Views/Interaction.elm
The `Html.Events` module does not expose `onWithOptions`:
13| import Html.Events exposing (onWithOptions)
^^^^^^^^^^^^^
These names seem close though:
onMouseEnter
onMouseLeave
onMouseOut
onMouseOver
onWithOptions
应该可用。
module Views.Interaction exposing (onClickNoBubble)
{-| Helper functions for page interactions.
# Helpers
@docs onClickNoBubble
-}
import Html
import Html.Events exposing (onWithOptions)
import Json.Decode as Decode
{-| Replicates the onClick function but prevents bubbling
-}
onClickNoBubble : msg -> Html.Attribute msg
onClickNoBubble message =
onWithOptions "click" { stopPropagation = True, preventDefault = True } (Decode.succeed message)
最佳答案
Elm 0.19不使用elm-lang/html
。您正在阅读错误的文档。它已由 elm/html
取代,后者具有 custom
函数,该函数具有相同的目的:
onClickNoBubble : msg -> Html.Attribute msg
onClickNoBubble message =
Html.Events.custom "click" (Decode.succeed { message = message, stopPropagation = True, preventDefault = True })
关于elm - 为什么我不能在Elm 0.19中使用 `onWithOptions`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52541501/
我正在尝试将Elm应用程序从0.18升级到0.19。 我被这个错误困住了- Detected errors in 1 module.
我是一名优秀的程序员,十分优秀!