我一直在尝试 gatsby.js 一段时间,除了这个问题,一切都很顺利,我无法将 jQuery 脚本包含到应用程序中,以便在 gatsby 应用程序呈现后加载,我已经包含了脚本标签该html.js
文件并加载它,但它似乎代码被执行之前呈现的react对画面我已经尝试使用的内容simple-load-script
,以及包括它的componentDidMount
上方法html.js
的应用程序。但不幸的是,这是我的html.js
文件的源代码:
html.js
import React from "react"
import PropTypes from "prop-types"
export default class HTML extends React.Component {
componentDidMount() {
console.log('hello world');
}
render() {
return (
<html {...this.props.htmlAttributes}>
<head>
<meta charSet="utf-8" />
<meta httpEquiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
{this.props.headComponents}
</head>
<body>
{this.props.preBodyComponents}
<div
key={`body`}
id="___gatsby"
dangerouslySetInnerHTML={{ __html: this.props.body }}
/>
{this.props.postBodyComponents}
</body>
</html>
)
}
}
HTML.propTypes = {
htmlAttributes: PropTypes.object,
headComponents: PropTypes.array,
bodyAttributes: PropTypes.object,
preBodyComponents: PropTypes.array,
body: PropTypes.string,
postBodyComponents: PropTypes.array,
}
正如您所看到的,我替换了componentDidMount()
写出到控制台的方法,并且没有阻止此方法执行的内容。
如果有人有这方面的经验,请分享,谢谢。