我有一个用ES6风格编写的React类,例如:
export default class App extends React.Component {
constructor(props) {
super(props);
let HClass = new HelperClass();
}
}
同一个文件中存在的我的帮助器类如下:
class HelperClass {
constructor() {
this.somevar="";
}
some_function= () => {
//do work
}
}
但是,当尝试构造和运行'some_function'方法时,我收到TypeErrors
指出该函数未定义。
我的问题是:
谢谢!
答案 0 :(得分:2)
当前,new HelperClass()
仅在构造函数内部可用。您只能在此处使用some_function
。
通常,您会这样做:
要在特定方法内使用:
// outside the constructor
myMethod() {
let HClass = new HelperClass();
HClass.some_function();
}
用于任何方法:
// inside the constructor
this.props.HClass = new HelperClass();
// to call
this.props.HClass.some_function();
或者,只需使用此:
// inside the constructor
this.HClass = newHelperClass();
// to call
this.HClass.some_function();