老师您好 能帮我看看问题在哪儿么?

来源:2-2 iris的常用功能介绍

慕斯卡3162337

2018-11-08 18:32

package main

import (
   "github.com/kataras/iris"
)

func main() {
   app := iris.New()

   app.RegisterView(iris.HTML("./views", ".html"))

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

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


<html>
<head>
    <title>Hello Page</title>
</head>
<body>
<h1>{{.message}}</h1>
</body>
</html>

https://img1.mukewang.com/5be4108800016ba519400632.jpg


https://img.mukewang.com/5be41099000198e914080398.jpg



写回答 关注

1回答

  • 蓝色书笺
    2018-12-13 16:19:20

    模板文件位置换成绝对路径就可以了

iris+xorm Go语言开发球星库

iris和xorm快速构建Web应用,Go设计开发球星库系统。

7896 学习 · 51 问题

查看课程

相似问题