本文整理汇总了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
}