dty9731 2018-05-17 03:19
浏览 19
已采纳

将本地包导入另一个文件夹

I keep getting the following error and I have been trying out some of the other suggestions in other Stack Overflow threads.

./main.go:15:13: undefined: checkEnv

Folder Structure:

├── README.md
├── main.go
└── validate
    └── args.go

$GOPATH

/Users/myusername/go

main.go

package main

import (
    "fmt"
    "log"
    "os"

    "projectName/validate"

    "gopkg.in/urfave/cli.v1"
)

func main() {
    app := cli.NewApp()
    app.Name = "thirsty"
    app.Action = func(c *cli.Context) error {
        result := checkEnv(c.Args().Get(0))

        fmt.Println(result)
        return nil
    }
    err := app.Run(os.Args)

    if err != nil {
        log.Fatal(err)
    }

}

validate/args.go

package validate

import "strings"

func checkEnv(environment string) bool {
    env := strings.ToLower(environment)
    return env != "qa" && env != "dev"
}

My project is in the src directory of my $GOPATH. If this is not the proper way to do code splitting, is there a generally used convention to follow?

Any feedback appreciated.

  • 写回答

1条回答 默认 最新

  • dtjwov4984 2018-05-17 04:30
    关注

    There are two problems here.

    1. The checkEnv method is not exported [in validate/args.go]. ie it is usable only inside the same package and not other packages
      To export just capitalize the first letter of the method CheckEnv. Now CheckEnv can be used from other packages

    2. While calling a method from other package, the syntax should be packagename.ExportedMethod(params...).
      so in your code [in main.go] it should be result := validate.CheckEnv(c.Args().Get(0))

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败
  • ¥15 树莓派5怎么用camera module 3啊
  • ¥20 java在应用程序里获取不到扬声器设备
  • ¥15 echarts动画效果的问题,请帮我添加一个动画。不要机器人回答。
  • ¥15 Attention is all you need 的代码运行
  • ¥15 一个服务器已经有一个系统了如果用usb再装一个系统,原来的系统会被覆盖掉吗
  • ¥15 使用esm_msa1_t12_100M_UR50S蛋白质语言模型进行零样本预测时,终端显示出了sequence handled的进度条,但是并不出结果就自动终止回到命令提示行了是怎么回事:
  • ¥15 前置放大电路与功率放大电路相连放大倍数出现问题