1

一旦我尝试设置 a 的样式Text,我就会收到此错误:

Cannot read property 'arity' of undefined
    Open the developer console for more details.

开发者控制台提供TypeError: fun is undefined.

Elm 0.12 和http://elm-lang.org/try 浏览器:Chrome、Firefox

titleStyle : Text.Style
titleStyle = 
    { typeface = [ "serif" ]
    , height   = Just 18
    , color    = white
    , bold     = True
    , italic   = False
    , line     = Nothing
    }

main = centered (style titleStyle (toText "hello"))

如果您更改main为:

main = centered (toText "hello")

文本按预期呈现,没有样式。

我在 Elm 网站上找不到任何示例Text.style- 我做错了什么还是这是一个错误?

4

1 回答 1

1

此错误是由style标准库 (Elm/libraries/Native/Text.js) 中未导出的函数引起的

于 2014 年 4 月 1 日修复mainhttps://github.com/elm-lang/Elm/issues/549

于 2014-04-01T21:13:42.677 回答