我有一个带有提交的表单。当它被点击时,我创建了一个对象来发送这些数据到POST。
写入saveEntity const:
const saveEntity = (event, errors, values) => {
// this is the const that is signed as error:
const valoreComune: any = comCod ? { comCod: { comCod: comCod } } : personEntity.comCod ? { comCod: { comCod: personEntity.comCod.comCod } } : { comCod: null };
//....
const entity = { // this is the object that I pass to post
// ....
valoreComune
}
}
我需要重建这个对象结构:
comCod: {
comCod: value
}
或
comCod: null
现在我收到这个错误:
期望属性简写对象-简写
现在我通常用这种方式直接解析:
const entity = {
valoreComune
}
但它不起作用。我该怎么办?
这部分应该使用对象简写语法:
{ comCod: { comCod: comCod } }
是这样写的:
{ comCod: { comCod } }