假设我有一个名为 的文件participant.coffee
,其中包含两个类:
class ParticipantData
constructor: (data) ->
# whatever
doSomething:
console.log 'participant data!'
class ParticipantResult
doAnotherThing:
console.log 'participant result!'
module.exports = new ParticipantResult()
现在我可以ParticipantResult
通过 using访问require('.particpantresult')
,但我想不出任何方法来调用ParticipantData
的构造函数。是否可以在ParticipantData
不将其移动到自己的文件的情况下进行访问?