为什么我不能访问它?
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
}
}
我不想不必修改行为,而是尽可能地修改代码。
答案 0 :(得分:2)
如果您处于任何现代节点中,请使用箭头功能保留上下文:
const Context = require('./Context');
const play = () => {
process.openStdin().on('data', res => {
if(Context.move(res, X)){
... rest of the code
}
});
};