我目前正在尝试使用ShareJS实现操作转换(特别是 JSON API)。如果我删除了一个父 JSON 对象会发生什么,wiki 并不太清楚,而另一个操作是插入到子 JSON 中。是否会重新创建父 JSON,或者它将是一个空操作?
例如
{"aa":
{"bb":
{"cc":"dd"}
}
}
//Operation A and B comes in carrying the same version number
//Op A deletes "aa", Op B modifies "cc"
//What happens? (assuming A comes in slightly earlier and is processed first)