📜  反应 JSON 数据以显示在表格中 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:09.941000             🧑  作者: Mango

代码示例1

{
  Object.keys(this.state.birth_details).map(function (element) {
    return (
      
        {element}
        {this.state.birth_details[element]}
      
    );
  })
}