9
노드 4에서 ES6 클래스를 올바르게 내보내는 방법은 무엇입니까?
모듈에 클래스를 정의했습니다. "use strict"; var AspectTypeModule = function() {}; module.exports = AspectTypeModule; var AspectType = class AspectType { // ... }; module.export.AspectType = AspectType; 하지만 다음과 같은 오류 메시지가 나타납니다. TypeError: Cannot set property 'AspectType' of undefined at Object.<anonymous> (...\AspectType.js:30:26) at Module._compile (module.js:434:26) .... 이 클래스를 내보내고 다른 모듈에서 …