我尝试为类创建装饰器,并深入了解es6类的工作原理。所以我偶然发现了一个问题 - 有没有办法从外部访问类内部因为无法将其作为函数调用
示例:由Babel编写的以下函数:
function App() {
(0, _classCallCheck3.default)(this, App);
var _this = (0, _possibleConstructorReturn3.default)(this, (0, _getPrototypeOf2.default)(App).call(this));
_this.returnState = _this.returnState.bind(_this);
return _this;
}
有没有办法从外部访问方法returnState?