我有一个带有app.js
文件,deviceController.js
文件和cart.pug
文件的node.js express应用。我需要在deviceController.js
和cart.pug
中访问Stripe API的两个常量,并想在app.js
中设置它们的值。
我尝试了app.set/app.get
,但是在deviceController.js
中得到了“ app is undefined”,我不想使用var
来创建全局变量。
最佳做法是什么?
app.js:
const express = require('express');
const routes = require('./routes/index');
const app = express();
// **want these constants available in deviceController.js and cart.pug**
const keyPublishable = process.env.PUBLISHABLE_KEY;
const keySecret = process.env.SECRET_KEY;
app.set('view engine', 'pug');
module.exports = app;
deviceController.js
...
const stripe = require('stripe')(keySecret);
...
cart.pug
extends layout
...
block content
.inner
form(action="/payment" method="POST")
script(
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key=keyPublishable
...)
答案 0 :(得分:1)
您应该为过程常数创建一个模块-这样,您可以在任何需要的地方使用它们,而无需直接访问过程。
// constants.js
module.exports = {
stripe: { // you could also use stripeKeys or whatever
keyPublishable: process.env.PUBLISHABLE_KEY;
keySecret: process.env.SECRET_KEY;
}
}
然后在每个文件中
// deviceController.js
const { stripe } = require('./constants.js');
// use stripe.keyPublishable or stripe.keySecret
和模板中
// when compiling the pug file, you also require the constants file and pass it
// template.pug has #{keyPublishable}
const { stripe } = require('./constants.js');
// .. rest of code
pug.renderFile('template.pug', {
keyPublishable : stripe.keyPublishable
}));
检查有关如何通过pug模板插入要插入的对象的文档