我用Gatsby和Netlif编写了一个应用程序。
我通过html.js
中的环境变量使用Snippart公共API密钥(在dev中具有测试密钥,在prod中具有活动密钥(。
import React from 'react'
import PropTypes from 'prop-types'
export default class HTML extends React.Component {
render() {
return (
<html lang='en' {...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
defer
src='https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js'
/>
<script
defer
src='https://cdn.snipcart.com/scripts/2.0/snipcart.js'
id='snipcart'
data-api-key={process.env.SNIPCART_API_KEY}
/>
<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
}
在本地,我的.env.development
和env.production
都能正常工作。
当我在本地构建和提供应用程序时,我没有问题。当我调用时,变量是正确的
process.env.SNIPCART_API_KEY
在Netlify中,我在构建参数中指出了我的生产变量:
SNIPCART_API_KEY = PROD_VALUE
但是,当站点部署时,变量没有被考虑在内。(.env文件在.gitignore中(
我想我在Netlify设置中做错了什么,但我不知道是什么。
一旦站点部署,如何访问此变量
好的,经过一些研究,我只需要在变量前面加上GATSBY_
。
文档中的更多内容:https://www.gatsbyjs.org/docs/environment-variables/#client-侧javascript