switch(this.props.cardType) {
const Component = components[this.props.cardType];
return Component && <Component {...this.props} />;
class Parent extends React.Component {
state = {
count: 0,
}
onClick = () => {
this.setState(({ count }) => ({
count: count + 1,
}));
}
render() {
return (
<div>
<button onClick={this.onClick}>Добавить компонент</button>
{Array.from({ length: this.state.count }, () => <Input />)}
</div>
);
}
}
получаю ошибку
вызываю в дочернем компоненте this.props.getCity(1, 'П')
getCity={this.getCity}
, при этом метод getCity в родительском компоненте отсутствует. Есть getCities. Это как?передается пустой токен
{this.state.token && <NewAdvert id="newadvert"
user={this.state.fetchedUser}
cities={this.cities}
getCities={this.getCities}
getCity={this.getCity}
token={this.state.token}
getToken={this.getToken}
go={this.go}
/>}
Как программно получить индексы Ряда и Ячейки для строки кода
this.showPillarHandler(p.data[индекс Ряда].data[индекс Ячейки]) ?
showMachine={this.showPillarHandler}
.showShelfMachine={showMachine}
.showPlaceMachine={showShelfMachine}
.onClick={() => showPlaceMachine(seat)}
.class App extends Component {
state = {
users: []
}
componentDidMount() {
fetch('https://jsonplaceholder.typicode.com/users')
.then(response => response.json())
.then(users => this.setState({ users }));
}
render() {
return(
<div className="App">
<table>
<tbody>
{this.state.users.map(n => (
<tr key={n.id}>
<td>{n.name}</td>
<td>{n.username}</td>
<td>{n.email}</td>
<td>{n.website}</td>
</tr>
))}
</tbody>
</table>
</div>
)
}
}
this.setState({
request: e.target.value,
}, () => console.log(this.state.request))
// достаёте компонент из пропсов, обратите внимание, что
// имя переменной должно начинаться с большой буквы
const Component = this.props.component;
// ну и рендерите его
<Component />
передаю метод без аргумента onBlur={this.handleChange}
стоит мне изменить на onBlur={this.handleChange('title')}
onBlur={() => this.handleChange('title')}
. Или вместо передачи значения в качестве параметра добавляйте его элементу как атрибут, а в обработчике события считывайте:onBlur={this.handleChange} data-change-param="title"
handleChange = (e) => {
const changeParam = e.target.getAttribute('data-change-param');
...
dataList.push({ key, title: key });
dataList.push({ key, title: node.title });
class App extends React.Component {
state = {
classes: [ 'bullshit' ],
}
onFocus = () => {
this.setState(({ classes }) => ({
classes: [ ...classes, 'focus' ],
}));
}
onBlur = () => {
this.setState(({ classes }) => ({
classes: classes.filter(n => n !== 'focus'),
}));
}
render() {
return (
<div className={this.state.classes.join(' ')}>
<input onFocus={this.onFocus} onBlur={this.onBlur} />
</div>
);
}
}
state отказывается обновляться
onImportantClick = (e) => {
e.stopPropagation();
this.setState(({ important }) => ({
important: !important
}));
};
ошибка появилась из ниоткуда