如何检查当前页面链接是否包含特定字符串使用React组件?

huangapple go评论141阅读模式
英文:

How to check if current page link contains a certain string with react component?

问题

如何检查当前页面链接是否包含特定字符串并返回true或false?

// 在这里检查页面链接是否包含"/MYSTRING/xx"
if (window.location.href.includes("/MYSTRING/xx")) {
  // 如果包含,执行以下操作
}
英文:

how can i check if my current page link contains a certain string and returns true or false?

class MyDocument extends Document {
  render() {
    return (
      <Html lang="en">
        <Head>
               // Check if page link contains "/MYSTRING/xx"
               THEN DO THIS HERE..
        </Head>
      </Html>
    )
   }
}

答案1

得分: 1

你可以考虑2种解决方案:

解决方案1: 在NextJS中使用next/router (我推荐这个)

import { useRouter } from 'next/router'

class MyDocument extends Document {
  const { pathname } = useRouter()    

  render() {
    return (
      <Html lang="en">
        <Head>
           // 检查页面链接是否包含"/MYSTRING/xx"
           {pathname?.includes('/MYSTRING/xx')
             ? `${pathname} 包含 '/MYSTRING/xx'`
             : `${pathname} 不包含 '/MYSTRING/xx'`
           }
        </Head>
      </Html>
    )
  }
}

解决方案2: 使用window.location.href

如果使用这种方式,您需要确保您在客户端。否则,您将看到错误 ReferenceError: window is not defined

这是因为在NextJS中,当页面加载时,它首先运行服务器端,但对象 window 只存在于客户端。要检测您是在服务器端还是客户端,请检查 typeof window === 'undefined'true 表示在服务器端,而 false 表示在客户端。

然而,这会导致服务器渲染的HTML和客户端渲染的HTML之间存在某些不匹配的情况,所以我不太推荐这种方法。

您可以在这个 代码演示 中尝试。

英文:

You can consider 2 solutions:

Solution 1: Use next/router in NextJS (I recommend this)

import { useRouter } from &#39;next/router&#39;

class MyDocument extends Document {
  const { pathname } = useRouter()    

  render() {
    return (
      &lt;Html lang=&quot;en&quot;&gt;
        &lt;Head&gt;
           // Check if page link contains &quot;/MYSTRING/xx&quot;
           {pathname?.includes(&#39;/MYSTRING/xx&#39;)
             ? `${pathname} includes &#39;/MYSTRING/xx&#39;`
             : `${pathname} doesn&#39;t include &#39;/MYSTRING/xx&#39;`
           }
        &lt;/Head&gt;
      &lt;/Html&gt;
    )
  }
}

Solution 2: Use window.location.href

If using this way, you need to ensure that you are in client-side. Otherwise, you will saw error ReferenceError: window is not defined.

This is because in NextJS, when the page is loading, it runs the server-side first, but the object window is only existed in client-side. To detect whether you are on server or client, please check typeof window === &#39;undefined&#39;. true is on server while false is on client.

However, it will lead to some case of miss match between server-rendered HTML and the client-render one, so I'm not prefer this approach.

You can play around in this code demo

答案2

得分: 0

你可以使用window.location.href获得当前页面的URL,并使用includes()方法检查URL是否包含你要查找的字符串,该方法返回一个布尔值。

解决方案

const lookForThisString = 'someString'
window.location.href.includes(lookForThisString) // 返回 true 或 false
英文:

You can get the current page URL returned as a string with window.location.href and then check if the URL includes the string that you are looking for with the string includes() method which returns a boolean.

Solution

const lookForThisString = &#39;someString&#39;
window.location.href.includes(lookForThisString) // returns true or false

huangapple
  • 本文由 发表于 2023年3月1日 10:34:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/75599088.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定