Javascript反射-获取JsonResult对象的属性



我有一个从JsonResult返回的对象
我想在客户端中获得对象的所有属性,比如C#反射

for(var property in object){
 if(object.hasOwnProperty(property)){//prevents from getting inherent properties
   console.log(object[property])
 }
}

相关内容

  • 没有找到相关文章

最新更新