为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我的结构代码不起作用?

为什么我的结构代码不起作用?

Go
慕村225694 2021-05-07 01:24:32
package apptype ConfigSet struct {    installed bool}import (    "fmt"    "html/template"    "net/http")func init() {    config := ConfigSet{}    // -------------------------------------- //    //             CONFIGURATION              //    // -------------------------------------- //    // Change to "true" after configuration is done!    config.installed = false    // -------------------------------------- //    //           END CONFIGURATION            //    // -------------------------------------- //    http.HandleFunc("/", index)    http.HandleFunc("/index.php", index)}func index(w http.ResponseWriter, r *http.Request) {    if config.installed == false {        w.Header().Set("Location", "/install/")        return    }}我似乎无法弄清楚为什么这行不通。我得到的错误是:2012/05/21 13:22:01 go-app-builder: Failed parsing input (1 error)2012/05/21 13:22:01 /root/TravianGAE/app/app.go:7:1: expected declaration, found 'import'我不明白,我应该在那儿声明什么吗?
查看完整描述

1 回答

?
开心每一天1111

TA贡献1836条经验 获得超13个赞

将您的import第一个放在之前type


查看完整回答
反对 回复 2021-05-10
  • 1 回答
  • 0 关注
  • 216 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信