我正在尝试将Snipcart集成到Gatsby(v2)中。

我这样编辑html.js文件:

import React from "react"
import PropTypes from "prop-types"

export default class HTML extends React.Component {
  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}

          {/* Snipcart */}
          <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
          <script src="https://cdn.snipcart.com/scripts/2.0/snipcart.js" id="snipcart" data-api-key="UF45pIjZjAtZWJkYS00MGEwLWIxZWEtNjljZThjNTRiNjA4NjM2NDg1MzAzMzQyNfDrr48"></script>
          <link href="https://cdn.snipcart.com/themes/2.0/base/snipcart.min.css" type="text/css" rel="stylesheet" />

        </head>
        <body {...this.props.bodyAttributes}>
          {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,
}

有效的方法:

如果我创建一个div:
<a href="#" class="snipcart-edit-profile">
   Edit profile
</a>

Snipcart可以工作,并在单击时打开用户个人资料。

什么不起作用:

当我想使用 public API时,例如,如果我调用:

函数中的Snipcart.api.user.logout()

=> error 'Snipcart' is not defined no-undef

如何在我的所有应用程序中使用全局Snipcart对象?

最佳答案

no-undef是一个linter错误,而不是运行时错误。因此,这并不表示代码运行时Snipcart不可用。

如果不可用,则会在浏览器的控制台:ReferenceError: Snipcart is not defined中得到此错误

如果您使用的是eslint,则可以在eslint配置中像这样add a global variable:

{
    "globals": {
        "Snipcart": false
    }
}

或者,您可以在使用Snipcart API的文件中添加注释:/* global Snipcart:false */Snipcart对象仅在浏览器中可用,因此您应确保在Gatsby预渲染网站时不要调用这些函数。这意味着您只应调用Gatsby's Browser API而不是SSR或Node API调用的Snipcart.api.*函数。

另外,还要确保仅在脚本的脚本you can check the snipcart.ready event完全加载后才调用Snipcart的API:
document.addEventListener('snipcart.ready', function() {
    // any Snipcart.api.* call
});

10-05 21:05