虹膜错误 - 未解决'得到'

时间:2017-03-20 12:33:44

标签: go intellij-idea go-iris

这是我的代码

`package main 
 import "github.com/kataras/iris"
 func main()    {
     iris.Get("/hi",    func(ctx    *iris.Context)  {
         ctx.Writef("Hi %s",    "iris")
     })
     iris.Listen(":8080")
 }`

我有“去得-u github.com/kataras/iris/iris” 这就是我得到的,我一直在努力,仍然无法解决这个问题。

./ IRIS.go:6:undefined:iris.Get
./IRIS.go:9:undefined:iris.Listen

这是我第一次尝试这个框架,我从页面https://docs.iris-go.com/开始关注 我虽然很容易,但它真的没有,我只能安装虹膜,这是我的第一个更糟糕的你好世界

我正在使用Intellij Idea作为我的IDE

请帮助我。感谢

2 个答案:

答案 0 :(得分:0)

这很有趣,因为https://github.com/kataras/irishttps://iris-go.com以及https://docs.iris-go.com有很多这些事情的例子,你花时间问这个,你可能检查了第三方的Iris和不是虹膜本身你在哪里找到了代码片段?

正确的方法:

package main 
import "github.com/kataras/iris"
func main()    {
    app := iris.New()
    app.Get("/hi", func(ctx iris.Context)  { // go > 1.9
        ctx.Writef("Hi %s", "iris")
    })
    app.Run(iris.Addr(":8080"))
}

这是另一个例子,一个简单的服务器,它将带有消息的模板文件呈现给客户端:

// file: main.go
package main
import "github.com/kataras/iris"

func main() {
    app := iris.New()
    // Load all templates from the "./views" folder
    // where extension is ".html" and parse them
    // using the standard `html/template` package.
    app.RegisterView(iris.HTML("./views", ".html"))

    // Method:    GET
    // Resource:  http://localhost:8080
    app.Get("/", func(ctx iris.Context) {
        // Bind: {{.message}} with "Hello world!"
        ctx.ViewData("message", "Hello world!")
        // Render template file: ./views/hello.html
        ctx.View("hello.html")
    })

    // Method:    GET
    // Resource:  http://localhost:8080/user/42
    app.Get("/user/{id:long}", func(ctx iris.Context) {
        userID, _ := ctx.Params().GetInt64("id")
        ctx.Writef("User ID: %d", userID)
    })

    // Start the server using a network address.
    app.Run(iris.Addr(":8080"))
}
<!-- file: ./views/hello.html -->
<html>
<head>
    <title>Hello Page</title>
</head>
<body>
    <h1>{{.message}}</h1>
</body>
</html>
$ go run main.go
> Now listening on: http://localhost:8080
> Application started. Press CTRL+C to shut down.

如果您需要任何有关Iris的帮助,您可以随时通过在线聊天https://chat.iris-go.com与支持团队联系。祝你有愉快的一天!

答案 1 :(得分:0)

如果Go 1.8仍然是go应用程序的基本主机,那么你应该在源文件的import语句中声明并使用github.com/kataras/iris/context包。

package main
import (
"github.com/kataras/iris"
"github.com/kataras/iris/context"
)

func main() {
app := iris.New()
app.RegisterView(iris.HTML("./views", ".html"))

app.Get("/", func(ctx context.Context) {
    ctx.ViewData("message", "Hello world!")
    ctx.View("hello.html")
})

app.Run(iris.Addr(":8080"))
}