C'est mon code où j'obtiens une référence à l'élément actuel sur lequel je veux me concentrer, mais le focus ne va pas sur cet élément.
useEffect(() => { setTimeout(() => { console.log("This is current barcode ref inside", barcodeRef.current); barcodeRef.current && barcodeRef.current.focus(); }, 500) //barcodeRef.current && barcodeRef.current.focus(); }, [tableData]);
C'est également ainsi que je référence l'élément d'entrée sur lequel je souhaite me concentrer.
{tableData.map((row, rowIndex) => ( <TableRow key={rowIndex}> {columns.map( (column) => !column.hidden && ( <TableCell key={column.accessorKey} style={{ width: column.width }} > {column.accessorKey === "ItemName" ? ( <Input value={row[column.accessorKey] || ""} onChange={(event) => handleLeaveItem( rowIndex, column.accessorKey, event.target.value ) } /> ) : ( <Input ref={column.accessorKey === "Barcode" ? barcodeRef : null}//reference to the input of barcode column in table row value={row[column.accessorKey] || ""} onChange={(event) => handleSaveCell( rowIndex, column.accessorKey, event.target.value ) } /> )} </TableCell> ) )} <TableCell> <IconButton onClick={() => handleRemoveRow(rowIndex)}> <Delete /> </IconButton> </TableCell> </TableRow> ))}
J'ai également essayé d'utiliser useLayoutEffect, mais sans succès. Dans la console, j'obtiens le bon élément d'entrée sur lequel je souhaite me concentrer.
<div class="MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-colorPrimary css-10tgus4-MuiInputBase-root-MuiInput-root"> ::before <input type="text" class="MuiInputBase-input MuiInput-input css-ume8vi-MuiInputBase-input-MuiInput-input" value> ::after </div>
Votre
useEffect
需要依赖于barcodeRef
, comme indiqué ci-dessous :