當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Attach.CreatedTime方法代碼示例

本文整理匯總了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 
}
開發者ID:intZz,項目名稱:leanote,代碼行數:29,代碼來源:AttachService.go

示例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
}
開發者ID:sunyinhuiCoding,項目名稱:leanote,代碼行數:12,代碼來源:AttachService.go


注:本文中的github.com/leanote/leanote/app/info.Attach.CreatedTime方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。