reactjs 如何修复useState钩子在移动的视图上不更新?

fdbelqdn  于 2023-02-12  发布在  React
关注(0)|答案(2)|浏览(242)

我有一个按钮来管理页面上组件的外观。它在桌面上工作得很完美,但在平板电脑或移动的上什么都不起作用,useState似乎无法更新状态。
谁能给我解释一下为什么会发生这样的事?
请参阅代码片段以供参考。组件我指的是在代码片段底部的联系人,谢谢。

const Conciergerie = () => {
  const scrollToConciergerie = () => {
    window.scrollTo({
      top: 1200,
      behavior: "smooth",
    });
  };
  const [showform, setshowform] = useState(false);
  useEffect(() => {
    window.addEventListener("load", scrollToConciergerie);
    return () => {
      window.removeEventListener("load", scrollToConciergerie);
     
    }
  });

  return (
    <div className="section" onLoad={scrollToConciergerie}>
      <div className="container">
        <div className="text-center">
          <h1 className=" my-4 text-capitalize" id="conciergerie">
            Conciergerie
          </h1>
        </div>
        <h3 className="text-capitalize concierge-subheading mt-3">
          ¿QUÉ NECESITAS?
        </h3>
        <p className="lead concierge-subheading-text">

        </p>
      </div>
      <div className="container">
        <div className="row text-center mt-5">
          {conciergerieData.map((item) => {
            return (
              <div className="col-md-4" key={item.id}>
                <span className="fa-stack fa-4x">
                  <Image
                    layout="fill"
                    src={item.icon}
                    alt=""
                    className="svg-inline--fa fa-solid  fa-stack-1x fa-inverse"
                    aria-hidden="true"
                    focusable="false"
                    data-prefix="fas"
                    data-icon="house"
                    role="img"
                  />
                </span>
                <h4 className="my-3 text-hogar2 text-uppercase">
                  {item.title}
                </h4>
                <ul>
                  {item.text.map((text) => {
                    return (
                      <li key={text.id} className="list-unstyled">
                        <p className="m-0 text-muted text-list">
                          {text.content}
                        </p>
                      </li>
                    );
                  })}
                </ul>

                {item.id === "algomas" ? (
                  <AiOutlinePlus
                    onClick={() => {
                      setshowform( !showform)
                      console.log(showform)
                    }}
                    className="fs-2"
                    fill="#5ab4ab"
                  />
                ) : null}
              </div>
            );
          })}
        </div>
      </div>
      <div className={showform ?"algoma" : "d-none"}>
       <Contact />
      </div>
    </div>
  );
};

export default Conciergerie;
9lowa7mx

9lowa7mx1#

我相信钩子是在React 16.8中引入的,我看到你指的是React 16.6.3。我可能错了,但是你使用旧版本的React有什么原因吗?
然后,我不确定你是否从useEffect中得到了想要的结果。这里没有提供dependency数组,这意味着你的效果将在每一个渲染中运行。这是你的意图吗?

const [showform, setshowform] = useState(false);

const scrollToConciergerie = useCallback(() => {
  window.scrollTo({
    top: 1200,
    behavior: "smooth",
  });
}, []);

useEffect(() => {
  window.addEventListener("load", scrollToConciergerie);
  return () => {
    window.removeEventListener("load", scrollToConciergerie);
    
  }
}, [scrollToConciergerie]);

这将确保效果只在组件挂载时运行,并将在卸载时删除事件侦听器。
既然你的问题是关于状态不像预期的那样工作,我发现了一些可能是原因的东西。虽然不确定,但值得一试。
当你想在state中切换一个布尔值时,你可以提供一个函数给setState,如下所示:

setshowform(currentValue => !currentValue)

我不能肯定我的建议能解决你的问题,但如果你愿意,你可以试试。

dsf9zpds

dsf9zpds2#

该问题与div相关,该div具有位于按钮同一级别的子项。
乍一看它是不可见的,但当使用开发工具并将鼠标悬停在它上面时,有问题的元素被突出显示。
我只需要将div的宽度设置为fit-content就可以解决这个问题。

相关问题