反应钩子 - 对于数组中的每一个都不起作用



我正在使用 React 钩子在项目中工作。但是,我尝试使用没有使用状态钩子的变量来处理变量。问题是,当我运行一个包含数组操作的函数时,似乎没有考虑到这一点并跳过该步骤。 我以这种方式进行了更改(您很快就会在代码中看到(,因为我使用的是连续添加更多值的数组,因此我认为以这种方式更容易完成。

你能帮我解决这个问题或解释为什么它不起作用吗?

这是代码:

let platosRegVent:any = [];                           // This is how I'm declaring my array
const agregarPlato = async () => {
if(validarCamposPlato()){
try{
let valorParcial = 0;
let platoExist = await encontrarPlato(config, rvPlato);
if(platoExist === true){
setAgregadoMin(true);
platoCodigo = await obtenerCodigoPlato(config, rvPlato);                    
platosRegVent.push({codigoPlato: platoCodigo, cantidad: rvCantidad});           // Here is where I'm adding more objects to my array.
let costoPlato = await obtenerValorPlato(config, rvPlato);
valorParcial = valorTotal;
setValorTotal(valorParcial += (costoPlato * parseInt(rvCantidad)));
setRvPlato('');
setRvCantidad('');
}
else{
toast.error('El plato ingresado no se ha encontrado.');
setRvPlato('');
}
}
catch(error){
toast.error('Un error inesperado ha ocurrido, por favor intente mas tarde.');
props.handleSubmit();
}
}
}
const finalizarRegVent = async () => {
console.log(agregadoMin);
if(validarCampos()){  
try{
if(rvPlato !== '' || rvCantidad !== ''){
await agregarPlato();
}
if(agregadoMin === true){
rvCodigo = await crearRegistroVenta(config, valorTotal, fechaActual, regVentMesa);
platosRegVent.forEach( (plato : any) => {                      //Here is the operation of the array. It seems that this step is skipped.
crearRegVentPlato(config, rvCodigo, plato.codigoPlato, plato.cantidad);
});
setValorFinal(false);
}
else{
toast.error('Debe ingresar por lo menos un plato para completar el registro.');
}  
}
catch(error){
toast.error('Un error inesperado ha ocurrido, por favor intente mas tarde.');
props.handleSubmit();
}
}
}

你应该使用 useState(( 和 useCallback(( hook 代替。 因为 React 的机制仅在检测到状态变化时才更新。如果你创建静态变量,react 无法更新其值。 或者,useRef(( 是适合您的解决方案。

相关内容

  • 没有找到相关文章

最新更新