Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
time パッケージと、日付/時刻表現に基づいてテンプレートを解析する方法を認識しています。私が知りたいのは、stdLongMonth の 1 か月前に time.Now() を解析する方法です。
すなわち
time.Now() // == April, 2013 // Output: March, 2013
つまり、sub.stdLongMonth() メソッドで time.now() を解析することは可能ですか? 誰でも親切で、いくつかの例を示すことができますか?
time.AddDate() を使用すると、タイムゾーンの考慮事項からも解放されます。
package main import ( "fmt" "time" ) func main() { time := time.Now().AddDate(0,-1,0) fmt.Println(time.Format("January, 2006")) }