你如何在React TypeScript中在`window`对象上设置全局属性?

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

How do you set up a global properties on `window` object in React TypeScript?

问题

I'm trying to use the react-google-recaptcha library and required to use the enterprise mode. In the documentation, it is possible to use the enterprise mode by setting the global properties, but I'm confused on how to set the global properties using window.recaptchaOptions in react. Where should I put it and how to actually set the enterprise key into true ?

我正在尝试使用react-google-recaptcha库,并需要使用企业模式。在文档中,可以通过设置全局属性来使用企业模式,但我不确定如何在React中使用window.recaptchaOptions来设置全局属性。我应该把它放在哪里,如何将enterprise键实际设置为true

I did some research and I found that to access the window object, you actually need to use the componentDidMount or useEffect , but it doesn't seem to work properly. When the enterprise mode is turned on, the script tag should load a javascript file from https://www.google.com/recaptcha/enterprise.js and not https://www.google.com/recaptcha/api.js

我做了一些研究,发现要访问window对象,实际上需要使用componentDidMountuseEffect,但似乎不起作用。当启用企业模式时,脚本标签应该从https://www.google.com/recaptcha/enterprise.js加载JavaScript文件,而不是https://www.google.com/recaptcha/api.js。

https://codesandbox.io/s/charming-mendel-kp3wdt?file=/src/App.js

// _app.tsx

declare global {
  interface Window { recaptchaOptions: any; }
}

useEffect(() => {
    window.recaptchaOptions = {
        enterprise: true
    }
}, [])

https://codesandbox.io/s/charming-mendel-kp3wdt?file=/src/App.js

英文:

I'm trying to use the react-google-recaptcha library and required to use the enterprise mode. In the documentation, it is possible to use the enterprise mode by setting the global properties, but I'm confused on how to set the global properties using window.recaptchaOptions in react. Where should I put it and how to actually set the the enterprise key into true ?

I did some research and I found that to access the window object, you actually need to use the componentDidMount or useEffect , but it doesn't seem to work properly. When the enterprise mode is turned on, the script tag should load a javascript file from https://www.google.com/recaptcha/enterprise.js and not https://www.google.com/recaptcha/api.js

https://codesandbox.io/s/charming-mendel-kp3wdt?file=/src/App.js

//_app.tsx

declare global {
  interface Window { recaptchaOptions: any; }
}

useEffect(() => {
    window.recaptchaOptions = {
        enterprise: true
    }
}, [])

答案1

得分: 0

Found the solution, just need to add the condition of (typeof window !== undefined) inside the useEffect:

//_app.tsx

declare global {
  interface Window { recaptchaOptions: any; }
}

useEffect(() => {
    if (typeof window !== undefined)
        window.recaptchaOptions = {
            enterprise: true
        }
}, [])
英文:

Found the solution, just need to add the condition of (typeof window !== undefined) inside the useEffect

//_app.tsx

declare global {
  interface Window { recaptchaOptions: any; }
}

useEffect(() => {
    if (typeof window !== undefined)
        window.recaptchaOptions = {
            enterprise: true
        }
}, [])

huangapple
  • 本文由 发表于 2023年7月4日 21:05:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/76612965.html
匿名

发表评论

匿名网友

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

确定