在JavaScript ES6中扩展数组失败

时间:2019-04-05 15:39:18

标签: javascript node.js ecmascript-6

我在扩展JS数组时遇到一些问题。这些是我的课程:

// ArrayList.js
export default class ArrayList extends Array {
  clear() {
    this.splice(0, this.length);
  }
}

// MyItem.js
export default class MyItem {
  constructor() {
    this._id = 0;
  }

  getID() {
    return this._id;
  }

  setID(value) {
    if (typeof value === 'number') {
      this._id = value;
    }
  }
}

// Test.js
import ArrayList from './ArrayList';
import MyItem from './MyItem';

let list = new ArrayList();

let item1 = new MyItem();
item1.setID(1);
list.push(item1);

let item2 = new MyItem();
item2.setID(2);
list.push(item2);

如果我现在执行:

list.forEach(function(item) {
  console.log(item.getID());
});

一切正常,但是如果我尝试调用自定义方法,则会遇到错误:

list.clear();
console.log(list.length);

例外是:

TypeError: list.clear is not a function

+++更新+++

我将测试脚本与node.js一起使用:

node start.js

那是我的start.js:

require('babel-register')({
    presets: [ 'env' ]
})
module.exports = require('./Test.js')

然后每个类都存储在单独的JS文件中。

1 个答案:

答案 0 :(得分:0)

我不喜欢您的进口终端出口。尝试使用模块(https://nodejs.org/api/modules.html),它在Node中没有Babel的情况下也可以正常工作。

module.exports =  class MyItem {
   // class content 
}

module.exports =  class ArrayList extends Array {
    clear() {
        this.splice(0, this.length);
    }
}

// in the test file
const ArrayList = require('./ArrayList');
const MyItem = require('./MyItem');