我有一個反應組件定義的擴展React.Component。它裏面,與渲染方法一起:無法存儲在反應組件中的let/var中的箭頭函數
constructor(props, context) {
super(props, context);
this.state = {
open: false,
};
}
handleClose =() => { //this works
this.setState({open: false});
};
handleOpen =() => { //this works
this.setState({open: true});
};
let empty =() => {}; // does not work, error Parsing error: Unexpected token
我看來,如果我任何前綴的箭頭功能與Let或常量得到一個意外標記錯誤。我在這裏錯過了什麼嗎?
感謝
*「我在這裏錯過了什麼嗎?」*這是無效的語法。不知道你期待什麼樣的答案... –