我有一個表,其中有一列名爲date_time。它包含一個unix時間的數字。事情是這樣的: // mytable
+----+------------+
| id | date_time |
+----+------------+
| 1 | 1464499385 | -- 19 days ago
+----+------------+
-- ^these are based
我從數據庫中提取時間戳,它使用RFC3339格式,但時區丟失。所以當我嘗試比較時間戳時,它會關閉。如何將dbtime更改爲東部時間? // time format
const
(
RFC3339 = "2006-01-02T15:04:05Z07:00"
)
//now time
now := time.Now()
nowtime := now.Unix()
fmt.P