繁体   English   中英

通过带有Node.js中构造函数的模块公开多个对象

[英]Expose multiple objects through module with constructor in nodejs

我在nodejs中创建了一个模块,在这里我也希望公开它的常量。 但是此特定模块包含一个在构建时提供的依赖项,即依赖项注入。

这是module1

const STORE_TYPE = {
  STORE1: 1,
  STORE2: 2
};

function service(dependency1) {
  this.dep = dependency1;
}

service.prototype.doSomething = function(param1, store) {
  if (STORE_TYPE.STORE1 == store) {
    return this.dep.get(param1);
  } else {
    return "something";
  }
};

module.exports = service;

我在这里使用module1:

var dep = require('./dep');
var dep1 = new otherService(dep);
var service = require('./service')(dep1);

function getData() {
  return service.doSomething(id, /*this is module1 constant*/1);
}

如果module1具有构造函数,如何引用module1的常量。

我不希望仅添加单独的方法来创建服务,因为被调用者需要执行多个步骤。

尝试这个:

service.js

exports.STORE_TYPE = {
  STORE1: 1,
  STORE2: 2
};

exports.service = function service(dependency1) {
  this.dep = dependency1;
}

service.prototype.doSomething = function(param1, store) {
  if (STORE_TYPE.STORE1 == store) {
    return this.dep.get(param1);
  } else {
    return "something";
  }
};

使用该模块

app.js

const service = require('./service').service;

const STORE_STYLE = require('./service').STORE_TYPE;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM