我的js代码逻辑是
module.exports ={
A: function(){
// 处理逻辑
this.B();
// 处理逻辑
}
B:function(){}
};
怎么在A方法中无法使用this.B()调用B方法。
我的js代码逻辑是
module.exports ={
A: function(){
// 处理逻辑
this.B();
// 处理逻辑
}
B:function(){}
};
怎么在A方法中无法使用this.B()调用B方法。