node.js 用 mixin 扩展的对象在实例化后找不到函数

node.js object extended with a mixin can't find function after instantiation

我已经设法为我的混入设置了一个相当复杂的设置(尽管这是代码审查的问题),如下所示:

TooManyCaps.js

module.exports = {
  labelCopyCaps: () => {
    if (this.release.tracks.length > 1) {
      if (_this._notEnoughLowercase(this.release.title)) {
        this._recordError(release, 'LABELCOPYCAPS');
      } else {
        this.release.tracks.some( (track) => {
          if (this._lowerCaseCount(track.label_copy)) {
            this._recordError(release, 'LABELCOPYCAPS');
            return true;
          }
        });
      }
    }
  },
  _notEnoughLowercase: (str) => {
    if ((str.match(/[a-zA-Z]/g)||[]).length > 3
        && str.length - str.replace(/[a-z]/g, '').length) {
      return true;
    }
    return false;
  }
};

然后我有一个对象可以将其用作混合:

Rule.js

class Rule {
  constructor(release) {
    this.release = release;
    this.errors = [];
  }

  _recordError(error, options) {
    this.errors.push({
      release_id: this.release.id,
      rule: error,
      options: options,
    });
  }
}

module.exports = Rule;

然后我有一个将它们连接在一起的索引页

index.js

const TooManyCaps = require('./TooManyCaps');
const Rule = require('./Rule');
Object.assign(Rule.prototype, [TooManyCaps]);
module.exports = Rule;

然后我主要开始执行一些实例化的程序:

'use strict';
const RuleValidator = require('./job/validation/RuleValidatorMixin');
const Rule = require('./job/validation/rulesmixins/rules/index');

// some logic that's a loop
arr.forEach((value) => {
  new RuleValidator(new Rule(value)).validate();
}

在 validate() 中我有:

  validate() {
    console.log('VALIDATE');
    this.rule.labelCopyCaps();
    // console.log(this.rule);
  }

但是当我 运行 这个时,我得到:

this.rule.labelCopyCaps is not a function

所以我哪里错了?

Object.assign不取数组:

Object.assign(Rule.prototype, [TooManyCaps]);
//                            ^           ^

应该只是

Object.assign(Rule.prototype, TooManyCaps);