name := c.GetString(key:"name") 这一行有问题吗

来源:3-2 Beego项目运行基本流程

苏亚

2018-10-21 19:32

func (c *MainController) Get() {

  name := c.GetString(key:"name")

  c.Data["Website"] = name

  c.Data["Email"] = "astaxie@gmail.com"

  c.TplName = "index.tpl"

}

感觉没写错啊,但是终端里报错,我是win10系统

imooc/controllers

# imooc/controllers

controllers\default.go:12:25: syntax error: unexpected :, expecting comma or )

2018/10/21 19:26:13 ERROR    ▶ 0014 Failed to build the application: # imooc/controllers

controllers\default.go:12:25: syntax error: unexpected :, expecting comma or )


[beego] 2018/10/21 - 19:29:02 |            ::1| 200 |     6.9796ms|   match| GET      /     r:/

[beego] 2018/10/21 - 19:29:14 |            ::1| 200 |     3.0185ms|   match| GET      /     r:/


写回答 关注

2回答

  • 星之七章
    2018-12-21 01:06:45

    ...........这个坑不错

  • Max_Star
    2018-10-24 16:49:16

    name := c.GetString("name")

    key是编辑器的提示,不要照着写

使用Beego构建完整web项目

快速入门应用Beego框架搭建web项目

12712 学习 · 32 问题

查看课程

相似问题