9
Làm thế nào để xuất đúng một lớp ES6 trong Node 4?
Tôi đã xác định một lớp trong một mô-đun: "use strict"; var AspectTypeModule = function() {}; module.exports = AspectTypeModule; var AspectType = class AspectType { // ... }; module.export.AspectType = AspectType; Nhưng tôi nhận được thông báo lỗi sau: TypeError: Cannot set property 'AspectType' of undefined at Object.<anonymous> (...\AspectType.js:30:26) at …