搜尋

首頁  >  問答  >  主體

javascript - node 跨文件訪問

//a.js
var x = 1;
function up(){
    x++;
}
module.exports.x = x;
module.exports.up = up;
//b.js
var vA = require('./a');
a.up();
console.log(a.x)

//c.js
var vA = require('./a');
a.up();
console.log(a.x)

如上3個檔案 如何在b.js 和c.js 裡可以改變a中的x值,並且共享x的值

我想大声告诉你我想大声告诉你2801 天前419

全部回覆(1)我來回復

  • 高洛峰

    高洛峰2017-05-19 10:33:38

    知道了,書寫順序的問題

    回覆
    0
  • 取消回覆