本文整理匯總了Golang中github.com/couchbase/gocb/gocbcore.SubDocOp.Value方法的典型用法代碼示例。如果您正苦於以下問題:Golang SubDocOp.Value方法的具體用法?Golang SubDocOp.Value怎麽用?Golang SubDocOp.Value使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/couchbase/gocb/gocbcore.SubDocOp
的用法示例。
在下文中一共展示了SubDocOp.Value方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: ArrayInsert
// Inserts an element at a given position within an array. The position should be
// specified as part of the path, e.g. path.to.array[3]
func (set *MutateInBuilder) ArrayInsert(path string, value interface{}) *MutateInBuilder {
op := gocbcore.SubDocOp{
Op: gocbcore.SubDocOpArrayInsert,
Path: path,
}
if multiVal, isMulti := value.(subDocMultiValue); isMulti {
op.Value = multiVal
} else {
op.Value, _ = json.Marshal(value)
}
set.ops = append(set.ops, op)
return set
}
示例2: ArrayAppend
// Adds an element to the end (i.e. right) of an array
func (set *MutateInBuilder) ArrayAppend(path string, value interface{}, createParents bool) *MutateInBuilder {
op := gocbcore.SubDocOp{
Op: gocbcore.SubDocOpArrayPushLast,
Path: path,
}
if multiVal, isMulti := value.(subDocMultiValue); isMulti {
op.Value = multiVal
} else {
op.Value, _ = json.Marshal(value)
}
if createParents {
op.Flags |= gocbcore.SubDocFlagMkDirP
}
set.ops = append(set.ops, op)
return set
}