在 Gatsby React 页面中添加 HTML 和 <script>

add raw HTML with <script> inside Gatsby React page

我正在尝试将外部嵌入代码添加到我的 Gatsby 页面。

我目前使用

import React from 'react'
import Link from 'gatsby-link'


let test ="<script type='text/javascript'>
(function(d, s) {
    var useSSL = 'https:' == document.location.protocol;
    var js, where = d.getElementsByTagName(s)[0],
    js = d.createElement(s);
    js.src = (useSSL ? 'https:' : 'http:') +  '//www.peopleperhour.com/hire/1002307300/1213788.js?width=300&height=135&orientation=vertical&theme=light&rnd='+parseInt(Math.random()*10000, 10);
    try { where.parentNode.insertBefore(js, where); } catch (e) { if (typeof console !== 'undefined' && console.log && e.stack) { console.log(e.stack); } }
}(document, 'script'));
</script>"

const ContactPage = () => (

    <div>
        <h1>ContactPage</h1>
        <div
            dangerouslySetInnerHTML={{ __html: test }}
          />
    </div>

)

export default ContactPage

满是语法错误。您能否指出在反应组件中包含原始片段的更好方法?

Gatsby 中是否还有一个地方可以添加所有其他脚本,如自定义脚本、Google 分析、图标字体、animate.js 以及我可能需要的任何其他内容?

感谢您的帮助

显然使用多行 JS 语法达到了目的,如

let test = "<script type='text/javascript'>\
(function(d, s) {\
    var useSSL = 'https:' == document.location.protocol;\
    var js, where = d.getElementsByTagName(s)[0],\
    js = d.createElement(s);\
    js.src = (useSSL ? 'https:' : 'http:') +  '//www.peopleperhour.com/hire/1002307300/1213788.js?width=300&height=135&orientation=vertical&theme=light&rnd='+parseInt(Math.random()*10000, 10);\
    try { where.parentNode.insertBefore(js, where); } catch (e) { if (typeof console !== 'undefined' && console.log && e.stack) { console.log(e.stack); } }\
}(document, 'script'));\
</script><div id='pph-hireme'></div>"

或者,您可以这样做

let test2 = `
<script type='text/javascript'>
(function(d, s) {
    var useSSL = 'https:' == document.location.protocol;
    var js, where = d.getElementsByTagName(s)[0],
    js = d.createElement(s);
    js.src = (useSSL ? 'https:' : 'http:') +  '//www.peopleperhour.com/hire/1002307300/1213788.js?width=300&height=135&orientation=vertical&theme=light&rnd='+parseInt(Math.random()*10000, 10);\
    try { where.parentNode.insertBefore(js, where); } catch (e) { if (typeof console !== 'undefined' && console.log && e.stack) { console.log(e.stack); } }\
}(document, 'script'));
</script><div id='pph-hireme'></div>
`

欢迎大家多提意见

使用React-Helmet

第一个import Helmet from 'react-helmet'

在你的 div 里面你可以这样做

<Helmet>
<script type='text/javascript'>
(function(d, s) {
    var useSSL = 'https:' == document.location.protocol;
    var js, where = d.getElementsByTagName(s)[0],
    js = d.createElement(s);
    js.src = (useSSL ? 'https:' : 'http:') +  '//www.peopleperhour.com/hire/1002307300/1213788.js?width=300&height=135&orientation=vertical&theme=light&rnd='+parseInt(Math.random()*10000, 10);
    try { where.parentNode.insertBefore(js, where); } catch (e) { if (typeof console !== 'undefined' && console.log && e.stack) { console.log(e.stack); } }
}(document, 'script'));
</script>
</Helmet>

您可以通过多种方式将外部脚本(没有 npm 模块)注入 gatsby.js 项目。更喜欢将相应的 gatsby-plugin 用于 "web-analytics" 脚本。

使用require()

  • 在您的项目中创建一个文件myScript.js并粘贴脚本内容
  • 添加const myExtScript = require('../pathToMyScript/myScript')
    statefull 组件位于 render() 内的 Pages 文件夹和 return() 之前,如果你想执行该脚本 仅在那个页面(=page/component范围)。

    export default class Contact extends React.Component {  
      render() {  
       const myExtScript = require('../pathToMyScript/myScript')  
        return (
          ........       
                   )}
    
  • 如果要在全局范围(=在每个页面/组件中)执行脚本:
    添加到 html.js

    <script dangerouslySetInnerHTML= {{ __html: ` 
        putYourSciptHereInBackticks `}} />`  
    

    在关闭 </body> 之前。最好在这个组件中 manipulate/monitor 你的全局范围,因为它有这个特定的目的......将 html 注入每个 page/route 全局。

  • 另一种在全局范围注入的方法是在组件声明之前使用require()这会起作用,但这不是一个好的做法,因为您的组件不应该在全局范围内注入任何东西。

     const myExtScript = require('../pathToMyScript/myScript')  
    
       export default class Contact extends React.Component {  
        render() {  
          return (
          ........       
                   )}
    

P.S。抱歉,如果答案没有正确编辑。这是我在 Whosebug 的第一个答案。

一种方法(也许是首选方法)是使用 SSR 文件。

来自docs

The file gatsby-ssr.js lets you alter the content of static HTML files as they are being Server-Side Rendered (SSR) by Gatsby and Node.js. To use the Gatsby SSR APIs, create a file called gatsby-ssr.js in the root of your site. Export any of the APIs you wish to use in this file.

关于如何做到这一点的教程是 here

它使用setHeadComponents方法注入html.js:

setHeadComponents

它以一个组件数组作为第一个参数,在构建期间将其添加到头部组件,并将传递给 html.js。

还有一种方法,就是创建 React 的效果:

import { useEffect } from 'react'

const useGoogleAnalytics = () => {

    useEffect(() => {
        // GA Snippet
    }, [])

    return null
}

然后您可以在要包含的页面组件中使用useGoogleAnalytics()

这样做的主要优点是:

  • 您得到代码的转译
  • 与在模板文字中相比,维护更复杂的代码要容易得多。

对于像 Google Analytics 这样的简单脚本,我会选择模板文字,但对于自定义和可更改的片段,我更喜欢效果。只要您不滥用,它就不会影响性能或产生开销。

有没有人看到这种其他方法的其他缺点?