只需将它们包装在对象文字中即可。在纯JS(没有Coffeescript)中,将是:
module.exports = { Page: {}, // or whatever you want to assign it to Serialize: {} // again, set it to what you like};在coffeescript中,您使用缩进,但要创建空对象时除外:
module.exports = Page: {}, Serialize: {}
只需将它们包装在对象文字中即可。在纯JS(没有Coffeescript)中,将是:
module.exports = { Page: {}, // or whatever you want to assign it to Serialize: {} // again, set it to what you like};在coffeescript中,您使用缩进,但要创建空对象时除外:
module.exports = Page: {}, Serialize: {}