suchen

Heim  >  Fragen und Antworten  >  Hauptteil

node.js - nodejs express module.exports问题

我知道模块化可以这么写:

module.exports = {
    a: function(){
        console.log("这是a");
    },
    b: function(){
        console.log("这是b");
    }
}

请问可以这么写吗?

module.exports = function(){
    console.log("这是模块");
}
怪我咯怪我咯2787 Tage vor294

Antworte allen(1)Ich werde antworten

  • 大家讲道理

    大家讲道理2017-04-17 15:41:12

    ....你自己试验下不就行了? 上面到处一个对象,下面到处一个函数。。。有问题么?实践。。出真知。。。

    Antwort
    0
  • StornierenAntwort