Answer the question
In order to leave comments, you need to log in
How to put an array in react js array of arrays?
how to create an array which is an array of arrays (which can be replenished with elements and elements can be removed from it as in child arrays) react js
class Field extends React.Component {
constructor(props) {
super(props);
this.state = {
tasks: []
};
};
addList = (text) => {
var arrList = this.state.tasks;
arrList.push (text);
this.setState ({tasks: arrTask});
};
addTask = (text) => {
var arrTask = this.state.tasks;
arrTask.push (text);
this.setState ({tasks: arrTask});
};
deleteBlock = (i) => {
var arrTask = this.state.tasks;
arrTask.splice (i, 1);
this.setState ({tasks: arrTask});
};
updateText = (text, i) => {
var arrTask = this.state.tasks;
arrTask[i] = text;
this.setState ({tasks: arrTask});
};
eachTask = (item, i) => {
return (
<Task key={i} index={i} update={this.updateText} deleteBlock={this.deleteBlock}>
{item}
</Task>
);
};
render() {
return (
<div>
<div className="field">
<h2>Задание</h2>
{this.state.tasks.map (this.eachTask)}
<button onClick={this.addTask.bind (null, 'простое задание')} className="btn new">Новое Задание</button>
</div>
<button onClick={this.addTask.bind (null, 'простое задание')} className="btn new">Новое Задание</button>
</div>
);
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question