react类似于vue的data定义数据跟table动态添加

Posted fengshaopu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react类似于vue的data定义数据跟table动态添加相关的知识,希望对你有一定的参考价值。

react的data定义数据:

constructor(props) 
    super(props);
    this.state = 
     arr:[]
    ;
     this.click3= this.click3.bind(this);
  

table动态添加

  click3=()=>
    var out=''
    this.state.arr.push(name:this.state.name)
    var a=0
    this.state.arr.forEach((item,index)=>
     out += `
     <tr>
         <td>$a++</td>
         <td>$this.state.arr[index].name</td>
     </tr>
     ` 
    )
    var mybody= document.getElementById("mybody")
    mybody.innerhtml=out
  

  inputChanghe(e)
   var username=e.target.value
    this.setState(
       name:username
    )
   

以上是关于react类似于vue的data定义数据跟table动态添加的主要内容,如果未能解决你的问题,请参考以下文章

react-data-table-component 与嵌套表

Element ui table组件slot自定义表头,数据无法响应刷新

state和setState分析

在 data.table 上进行枢轴,类似于 rehape melt 函数

最快的方法来读取/处理data.table中的“类似于JSON的”列?

vue ssr笔记