标签: node.js
在python中,getattr()方法的语法为:
getattr()
getattr(object, name[, default])
以上语法等效于:
object.name
Node.js中的getattr等效项是什么?
getattr