【问题标题】:images in Elm 0.17Elm 0.17 中的图像
【发布时间】:2016-05-29 16:38:23
【问题描述】:

我正在尝试使用单个图像的测试示例:

import Html exposing (Html)
import Graphics.Element
main = image 960 500 "starry-night.jpg"

我正在使用 elm-reactor 进行尝试,但这个简单的结果无法编译:

I cannot find module 'Graphics.Element'.

Module 'Main' is trying to import it.

Potential problems could be:
  * Misspelled the module name
  * Need to add a source directory or new dependency to elm-package.json

我尝试导入必要的图形包,evancz/elm-graphics

john@me:~/Documents/Elm$ cat elm-package.json

{
    "version": "1.0.0",
    "summary": "helpful summary of your project, less than 80 characters",
    "repository": "https://github.com/user/project.git",
    "license": "BSD3",
    "source-directories": [
        "."
    ],
    "exposed-modules": [],
    "dependencies": {
        "elm-lang/core": "4.0.1 <= v < 5.0.0",
        "elm-lang/html": "1.0.0 <= v < 2.0.0",
        "elm-lang/svg": "1.0.0 <= v < 2.0.0",
        "evancz/elm-graphics": "1.0.0 <= v < 2.0.0"
    },
    "elm-version": "0.17.0 <= v < 0.18.0"
}

我想出了:

import Html exposing (Html)
import Element exposing (image, toHtml)
main = toHtml ( image 960 500 "starry-night.jpg" )

【问题讨论】:

    标签: elm


    【解决方案1】:

    模块的名称是Element,而不是Graphics.Element,所以这就是编译器找不到它的原因。

    此外,image 函数返回 Element,而 main 函数需要 Html 类型的东西。

    程序的运行版本可能类似于

    import Element exposing (..)
    
    main =
        toHtml (image 960 500 "starry-night.jpg")
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2016-09-12
      • 1970-01-01
      • 1970-01-01
      • 2016-10-27
      • 2017-01-30
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多