本文整理汇总了TypeScript中@bokehjs/document.Document.apply_json_patch方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Document.apply_json_patch方法的具体用法?TypeScript Document.apply_json_patch怎么用?TypeScript Document.apply_json_patch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@bokehjs/document.Document
的用法示例。
在下文中一共展示了Document.apply_json_patch方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("can patch an integer property", () => {
const d = new Document()
expect(d.roots().length).to.equal(0)
expect(Object.keys(d._all_models).length).to.equal(0)
const root1 = new SomeModel({ foo: 42 })
const root2 = new SomeModel({ foo: 43 })
const child1 = new SomeModel({ foo: 44 })
root1.child = child1
root2.child = child1
d.add_root(root1)
d.add_root(root2)
expect(d.roots().length).to.equal(2)
const event1 = new ev.ModelChangedEvent(d, root1, 'foo', root1.foo, 57)
const patch1 = d.create_json_patch_string([event1])
d.apply_json_patch(JSON.parse(patch1))
expect(root1.foo).to.equal(57)
const event2 = new ev.ModelChangedEvent(d, child1, 'foo', child1.foo, 67)
const patch2 = d.create_json_patch_string([event2])
d.apply_json_patch(JSON.parse(patch2))
expect(child1.foo).to.equal(67)
})