我正在尝试从json延迟加载对象,并能够使用此特定语法:
var myObj = loadFromFile('myObj.json');
console.log(myObj.prop1); //prop1 is loaded here, and nothing else
console.log(myobj); //this loads the rest of the object from the json file
//myObj.json
{
'prop1': 'val1',
'prop2': 'val2'
}
对于任何目标,如何实现?
编辑:我要查找的是是否有任何方法代理属性访问运算符以按需加载数据,或者是否有其他方法可以做到这一点。