npm react-grid-gallery的onSelectImage Prop函数不起作用

muk1a3rh  于 12个月前  发布在  React
关注(0)|答案(2)|浏览(187)

我使用react-grid-gallery npm模块的图像网格.我面临的问题我使用onSelectImage功能prop中提到的包的文档,但它不是触发图像选择,因为它必须通过图像选择触发,但目前,它不工作.
x1c 0d1x的数据
npm包https://www.npmjs.com/package/react-grid-gallery

qxgroojn

qxgroojn1#

onSelectImage将在鼠标悬停在图像上时,单击可见的勾选图标时触发。
PFA。PFA
我已经创建了一个示例代码库-https://codesandbox.io/s/boring-cookies-iqwdx?file=/src/App.js
x1c 0d1x的数据

neskvpey

neskvpey2#

如果你想例如删除你的图像取决于以前的图像,你可以这样处理它

const deletePhoto = (index) => {
    setImages((prevImages) => {
      const updatedImages = \[...prevImages\];
      updatedImages.splice(index, 1);
      return updatedImages;
    });
  };

字符串
作为回报

<Gallery
        images={galleryImages}
        onSelect={(index) => deletePhoto(index)}
      />

相关问题