例如,使用以下代码,我可以检索" leaf"的值。来自Falcor模型的c
var model = new falcor.Model({ cache: { a: { b: { c: 'hi!'}}} })
model.getValue('a.b.c').then(val => console.log(val));
然而,我对如何检索" node"感兴趣。 b
,即生成的json为{ c: 'hi!' }
。
任何帮助表示感谢。
答案 0 :(得分:1)
你可以这样做是将“c”作为jsongraph原子存入b。