자기개발/GoLang GORM 빈값 업데이트 문제 2022. 8. 5. https://medium.com/@speedforcerun/golang-how-to-solve-gorm-not-updating-data-when-you-may-have-none-zero-field-724ccb351e8b [GoLang] How to solve GORM not updating data when you may have none-zero field? Why does the update function not working when using GORM? One reason may be that you have null or 0 in the data you want to update! medium.com GoLang Offline Install (linux) 2022. 7. 27. https://go.dev/doc/install Download and install - The Go Programming Language Download and install Download and install Go quickly with the steps described here. For other content on installing, you might be interested in: 1. Go download. Click the button below to download the Go installer. Download Go Don't see your operating syste go.dev tar -C /usr/local -xzf go1.18.4.linux-amd64.tar.gz sudo .. Go Module 사용법 2022. 5. 22. go test 테스트 진행 $ go test 파일 작성을 완료한 뒤, go test를 실행하면 아래와 같은 화면을 확인할 수 있다. go test 실행 결과 > 위 이미지의 출력내용에서 마지막 줄은 전반적인 패키지 테스트를 요약한 것. > 현재 $GOPATH 바깥쪽에서 작업을 진행하고 있다. > 따라서 go 커맨드는 현재 디렉터리에 대한 import 정보를 알지 못한다. > 그로 인해 잘못된 경로를 생성하게 된다. go mod init 현재 디렉터리는 모듈이 아닌 패키지를 포함하고 있다. 그 이유는 아직 go.mod 파일이 존재하지 않기 때문이다. go mod init 명령어를 실행하여, 현재 디렉터리를 모듈의 루트로 만들고, go test를 실행한다. $ go mod init github.com/lec.. 이전 1 다음