本文整理匯總了Golang中github.com/leanote/leanote/app/info.Attach.CreatedTime方法的典型用法代碼示例。如果您正苦於以下問題:Golang Attach.CreatedTime方法的具體用法?Golang Attach.CreatedTime怎麽用?Golang Attach.CreatedTime使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/leanote/leanote/app/info.Attach
的用法示例。
在下文中一共展示了Attach.CreatedTime方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: AddAttach
// add attach
// api調用時, 添加attach之前是沒有note的
// fromApi表示是api添加的, updateNote傳過來的, 此時不要incNote's usn, 因為updateNote會inc的
func (this *AttachService) AddAttach(attach info.Attach, fromApi bool) (ok bool, msg string) {
attach.CreatedTime = time.Now()
ok = db.Insert(db.Attachs, attach)
note := noteService.GetNoteById(attach.NoteId.Hex())
// api調用時, 添加attach之前是沒有note的
var userId string
if note.NoteId != "" {
userId = note.UserId.Hex()
} else {
userId = attach.UploadUserId.Hex()
}
if ok {
// 更新筆記的attachs num
this.updateNoteAttachNum(attach.NoteId, 1)
}
if !fromApi {
// 增長note's usn
noteService.IncrNoteUsn(attach.NoteId.Hex(), userId)
}
return
}
示例2: AddAttach
// add attach
func (this *AttachService) AddAttach(attach info.Attach) (ok bool, msg string) {
attach.CreatedTime = time.Now()
ok = db.Insert(db.Attachs, attach)
if ok {
// 更新筆記的attachs num
this.updateNoteAttachNum(attach.NoteId, 1)
}
return
}