<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>

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

        Guided Tour / Joyride Integration to my Website(导游/兜风集成到我的网站)
          <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);
                      }
                    };
                  

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

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Pause youtube video, youtube api(暂停 youtube 视频,youtube api)
                  Youtube iframe api not triggering onYouTubeIframeAPIReady(Youtube iframe api 未触发 onYouTubeIframeAPIReady)
                  How can I stop a video with Javascript in Youtube?(如何在 Youtube 中停止使用 Javascript 的视频?)
                  How to call Greasemonkey#39;s GM_ functions from code that must run in the target page scope?(如何从必须在目标页面范围内运行的代码中调用 Greasemonkey 的 GM_ 函数?)
                  How do you mute an embedded Youtube player?(如何使嵌入式 Youtube 播放器静音?)
                  How to get number of video views with YouTube API?(如何使用 YouTube API 获取视频观看次数?)

                      <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'>

                            <tbody id='Hp8cU'></tbody>
                        • <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>