本文整理汇总了TypeScript中document.Document.roots方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Document.roots方法的具体用法?TypeScript Document.roots怎么用?TypeScript Document.roots使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类document.Document
的用法示例。
在下文中一共展示了Document.roots方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("sets proper document on models added during patching", () => {
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 child1 = new SomeModel({ foo: 44 })
d.add_root(root1)
expect(d.roots().length).to.equal(1)
// can't create copy of doc here like other test. Testing explicitly that
// doc attach happens when *not* creating a new document (i.e only patching)
// Testing only for/against null .document is not the strongest test but it
// should suffice.
expect(root1.document!.roots().length).equal(1)
expect(root1.child).to.equal(null)
const event1 = new ev.ModelChangedEvent(d, root1, 'child', root1.child, child1)
const patch1 = d.create_json_patch_string([event1])
d.apply_json_patch(JSON.parse(patch1))
expect(root1.document!.roots().length).equal(1)
expect(root1.child!.document!.roots().length).equal(1)
})