Я попробовал все ниже.
Есть ли причина, по которой он не работает?
Есть какие-нибудь предложения?
Спасибо за ваши добрые ответы.
addInfo = () => {
const hash = this.state.hash;
//test if all required fields are provided
if (this.state.firstName && this.state.lastName) {
allMap[hash] = Object.assign(this.state);
/*
tried these too
allMap[hash] = Object.assign({}, this.state);
allMap[hash] = {...this.state};
allMap[hash] = this.state
*/
this.reset();
} else {
alert("please fill the required fields")
}
};