2
クエリのtime
フィールドのデフォルト値を無視するにはどうすればよいですか?彼らは0001-01-01 00:00:00 +0000 UTC
に設定されているので
は、私がカスタム構造を使用してmongoで検索するにはどうすればよいですか?
// User model
type User struct {
Mail string `json:"mail" bson:"mail,omitempty"`
Password string `json:"password" bson:"password,omitempty"`
CreatedAt time.Time `json:"created_at" bson:"created_at,omitempty"`
UpdatedAt time.Time `json:"updated_at" bson:"updated_at,omitempty"`
}
例https://play.golang.org/p/P2P30PPtl0