我有一个从JsonResult
返回的对象
我想在客户端中获得对象的所有属性,比如C#反射
for(var property in object){
if(object.hasOwnProperty(property)){//prevents from getting inherent properties
console.log(object[property])
}
}