<tfoot id='wtxkx'></tfoot>
    <i id='wtxkx'><tr id='wtxkx'><dt id='wtxkx'><q id='wtxkx'><span id='wtxkx'><b id='wtxkx'><form id='wtxkx'><ins id='wtxkx'></ins><ul id='wtxkx'></ul><sub id='wtxkx'></sub></form><legend id='wtxkx'></legend><bdo id='wtxkx'><pre id='wtxkx'><center id='wtxkx'></center></pre></bdo></b><th id='wtxkx'></th></span></q></dt></tr></i><div id='wtxkx'><tfoot id='wtxkx'></tfoot><dl id='wtxkx'><fieldset id='wtxkx'></fieldset></dl></div>
    <legend id='wtxkx'><style id='wtxkx'><dir id='wtxkx'><q id='wtxkx'></q></dir></style></legend>
    1. <small id='wtxkx'></small><noframes id='wtxkx'>

        <bdo id='wtxkx'></bdo><ul id='wtxkx'></ul>

        导游/兜风集成到我的网站

        时间:2023-09-05
          <bdo id='jUYGH'></bdo><ul id='jUYGH'></ul>
        • <legend id='jUYGH'><style id='jUYGH'><dir id='jUYGH'><q id='jUYGH'></q></dir></style></legend>

            <small id='jUYGH'></small><noframes id='jUYGH'>

            <tfoot id='jUYGH'></tfoot>
                <tbody id='jUYGH'></tbody>
              <i id='jUYGH'><tr id='jUYGH'><dt id='jUYGH'><q id='jUYGH'><span id='jUYGH'><b id='jUYGH'><form id='jUYGH'><ins id='jUYGH'></ins><ul id='jUYGH'></ul><sub id='jUYGH'></sub></form><legend id='jUYGH'></legend><bdo id='jUYGH'><pre id='jUYGH'><center id='jUYGH'></center></pre></bdo></b><th id='jUYGH'></th></span></q></dt></tr></i><div id='jUYGH'><tfoot id='jUYGH'></tfoot><dl id='jUYGH'><fieldset id='jUYGH'></fieldset></dl></div>

                  本文介绍了导游/兜风集成到我的网站的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想为我的 React 应用添加兜风或导游.我想在用户第一次使用它时显示它,并为随后的频繁访问禁用它.我找到了这个库 https://github.com/gilbarbara/react-joyride 但不能不知道如何在同一用户的后续访问中禁用?我可以使用 localstorage 或 cookie 来处理这个问题吗?怎么样?

                  I want to add a joyride or guided tour for my React App. I want to show it when the users first uses it and disable for subsequent frequent visits. I have found this library https://github.com/gilbarbara/react-joyride but couldn't figure out how to disable on subsequent visits by same user? Can I use localstorage or cookies to deal with this issue? How?

                  推荐答案

                  如果你使用的是nextjs或者服务端渲染,这是我的做法:

                  If you're using nextjs or server-side rendering, here's my approach:

                  状态已初始化:

                  runJoyride: (typeof window === 'undefined')? false : window.localStorage.getItem('onboarded') === null,
                  

                  然后你回电:

                  handleJoyrideCallback = data => {
                      const { action, index, status, type } = data;
                  
                      if ([STATUS.FINISHED, STATUS.SKIPPED].includes(status)) {
                        this.setState({ runJoyride: false });
                        window.localStorage.setItem('onboarded', true);
                      }
                    };
                  

                  这篇关于导游/兜风集成到我的网站的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何访问引导网格系统中的某些列? 下一篇:JavaScript 重复 Cookie

                  相关文章

                    <legend id='Hp8cU'><style id='Hp8cU'><dir id='Hp8cU'><q id='Hp8cU'></q></dir></style></legend>
                    <tfoot id='Hp8cU'></tfoot>
                    • <bdo id='Hp8cU'></bdo><ul id='Hp8cU'></ul>

                    <small id='Hp8cU'></small><noframes id='Hp8cU'>

                  1. <i id='Hp8cU'><tr id='Hp8cU'><dt id='Hp8cU'><q id='Hp8cU'><span id='Hp8cU'><b id='Hp8cU'><form id='Hp8cU'><ins id='Hp8cU'></ins><ul id='Hp8cU'></ul><sub id='Hp8cU'></sub></form><legend id='Hp8cU'></legend><bdo id='Hp8cU'><pre id='Hp8cU'><center id='Hp8cU'></center></pre></bdo></b><th id='Hp8cU'></th></span></q></dt></tr></i><div id='Hp8cU'><tfoot id='Hp8cU'></tfoot><dl id='Hp8cU'><fieldset id='Hp8cU'></fieldset></dl></div>