正确的视图函数类型注释,不带参数

时间:2017-12-08 18:14:48

标签: html elm

我目前正在学习榆树,我知道这是一个菜鸟问题,但我似乎无法正确输入注释这个只返回纯粹div的函数。

header =
    div [] [ text "Hello" ]

键入注释此函数的准确方法是什么?

1 个答案:

答案 0 :(得分:8)

正确的注释是这样的:

header : Html msg
header =
    div [] [ text "Hello" ]

将来,您可以使用Elm REPL查找某事物的类型:

> import Html exposing (..)
> div [] [ text "Hello" ]
{ type = "node", tag = "div", facts = {}, children = {}, namespace = <internal structure>, descendantsCount = 0 }
: Html.Html msg

冒号后面的部分指定了签名,即Html.Html msg