在控制器和视图中访问App.js常量

时间:2019-04-05 13:38:03

标签: javascript node.js

我有一个带有app.js文件,deviceController.js文件和cart.pug文件的node.js express应用。我需要在deviceController.jscart.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 
        ...)

1 个答案:

答案 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模板插入要插入的对象的文档