git clone git@github.com:yangliang4488/ali_pay_demo.git cd ali_pay_demo cp .env.example .env (.env 里请配置相关 appid 、公钥和私钥)go run main.go
바이퍼 로딩 환경 파일 구성 파일은 다음을 참조하세요.
viper.SetConfigName(".env")viper.SetConfigType("env") // env 类型viper.AddConfigPath("./")if err := viper.ReadInConfig(); err != nil { fmt.Println(err) if _, ok := err.(viper.ConfigFileNotFoundError); ok { fmt.Println(".env 配置文件未找到") return }}
官方文档原文: viper.SetConfigType("json") // because there is no file extension in a stream of bytes, supported extensions are "json", "toml", "yaml", "yml", "properties", "props", "prop", "env", "dotenv"
더 많은 golang 관련 기술 기사를 보려면 golang튜토리얼 칼럼을 방문하세요!
위 내용은 사례공유 : golang 기반 Alipay 결제의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!