无法从Node stdin中访问导入的节点模块

时间:2018-06-28 19:02:06

标签: javascript node.js

为什么我不能访问它?

someFile.js

const Context = require('./Context');

    const play = function(){
      process.openStdin().on('data', function(res) {
         if(Context.move(res, X)){ // I get an error here saying Context is undefined
            ... rest of the code
          }
   }

我不想不必修改行为,而是尽可能地修改代码。

1 个答案:

答案 0 :(得分:2)

如果您处于任何现代节点中,请使用箭头功能保留上下文:

const Context = require('./Context');

const play = () => {
  process.openStdin().on('data', res => {
     if(Context.move(res, X)){
        ... rest of the code
     }
  });
};