0

我正在尝试创建一个具有这样的 api 的 nodejs 模块

**program.js**

var module = require('module');
var products = module('car', 'pc'); // convert string arguments to methods

// now use them 
products.car.find('BMW', function(err, results){
  // results
})

products.pc.find('HP', function(err, results){
  // results
})

>

**module.js**

function module(methods){
  // convert string arguments into methods attach to this function
  // and return
}

module.find = function(query){
  // return results
};

module.exports = module;

我知道这是可能的,因为这个模块正在做同样的事情。我曾尝试研究来源,但有太多事情要做,所以无法确定它是如何做到这一点的。

4

2 回答 2

2

大概是这样的?如果没有额外的细节,有点难以回答:

function Collection(type) {
    this.type = type;
}

Collection.prototype = {
    constructor: Collection,
    find: function (item, callback) {
        //code to find
    }
};

function collectionFactory() {
    var collections = {},
        i = 0,
        len = arguments.length,
        type;

    for (; i < len; i++) {
        collections[type = arguments[i]] = new Collection(type);
    }

    return collections;

}

module.exports = collectionFactory;
于 2013-10-25T17:29:15.243 回答
0

不知道你想做什么,但请记住,你可以使用 [] 符号来获得对象的动态属性名称,例如 ...

var MyModule = function(param1, param2) {
  this.funcTemplate = function() {
    console.log('Hi ');
  };

  this[param1] = this.funcTemplate;
  this[param2] = this.funcTemplate;
};

var dynamic = new myModule('what', 'ever');
于 2013-10-25T17:28:40.320 回答