使用 sharedb 和 json0-ot-type 向 JSON-Object 添加一个键(路径)
Adding a key(Path) to JSON-Object with sharedb and json0-ot-type
我目前正在使用 sharedb (https://share.github.io/sharedb/) and the operationel transformation type json0 (https://github.com/ottypes/json0)。
之后我需要向 JSON 对象添加一个密钥(路径),它应该通过 sharedb.
共享
例如,应将键“key2”添加到以下 JSON 对象:
{
key1: 'some_value',
}
很遗憾,根据json0(https://github.com/ottypes/json0)的文档,并没有对此进行任何操作,这让我很意外。
如何添加将被 sharedb 识别的新密钥?
单纯在本地添加key(路径),sharedb无法识别!
{p:[path,key], oi:obj}
inserts the object obj
into the object at [path]
with key key
.
所以你想使用 oi
(“对象插入”)操作形状:
const op = [{p: ['key2'], oi: 'some_other_value'}]
doc.submitOp(op)
我目前正在使用 sharedb (https://share.github.io/sharedb/) and the operationel transformation type json0 (https://github.com/ottypes/json0)。 之后我需要向 JSON 对象添加一个密钥(路径),它应该通过 sharedb.
共享例如,应将键“key2”添加到以下 JSON 对象:
{
key1: 'some_value',
}
很遗憾,根据json0(https://github.com/ottypes/json0)的文档,并没有对此进行任何操作,这让我很意外。 如何添加将被 sharedb 识别的新密钥? 单纯在本地添加key(路径),sharedb无法识别!
{p:[path,key], oi:obj}
inserts the objectobj
into the object at[path]
with keykey
.
所以你想使用 oi
(“对象插入”)操作形状:
const op = [{p: ['key2'], oi: 'some_other_value'}]
doc.submitOp(op)