Go
go get -d github.com/作者の名前/ツールの名前でいつもGitHubとかからインストールしているかと思うが、 ローカルに git clone したものはカレントディレクトリに移動して go install でインストールできる。 $GOPATH/bin が $PATH に含まれているか確認 Go…
goenvとgvmで迷って結局goenvにした。 gvmは更新されてなかったから。 あとはbrewで入れたい。 brew install goenv qiita.com ここを参考にしたが情報が古い。僕の生地も平成30年4月14日に書いたので未来では古いかもね。 昔は、.goenv/binだったのかそうい…
templateで指定してるのを動的に変えたい。 ここに書いてるような指定をしたい。 go - Call other templates with dynamic name - Stack Overflow どうやるのか? {{template "Blah" .}} を {{$BlahVar := "Blah"}} {{template $BlahVar .}} みたいにできな…
以下のように、ルーティング設定すると、 controller.Router.GET("/shops/:shop_id", controller.getShop) controller.Router.GET("/shops/new", controller.newShop) 以下のエラーが発生する。 panic: wildcard route ':shop_id' conflicts with existing c…
いままでこんな書き方してたが冗長。 func (controller *ShopsController) Setup() { controller.Router.POST("/shops", controller.createShop) controller.Router.GET("/shops", controller.listShops) controller.Router.GET("/shops/:shop_id", controll…
テンプレートの優先順。 ginのテンプレートの機能で以下のようにテンプレートを読む設定する。 router := gin.Default() router.LoadHTMLGlob("templates/*/*.tmpl") こうすればtemplates/なんとか の[なんとか]が自由になる。 templates/shop/index.tmpl te…
hoge変数がbarという文字と比較。 {{ if $hoge eq “bar” }}ではない。ポーランド記法。 {{ if eq $hoge "bar" }} {{else}} {{end}} ja.stackoverflow.com