我已阅读https://github.com/stage88/react-weather上的源代码 我发现其中有一些奇怪的JS语法,例如:
type Props = {
postcodes: Array<Postcode>;
dispatch: any;
navigator: any;
};
和
(this: any).onSearchBarPressed = this.onSearchBarPressed.bind(this);
我无法通过Google和Mozilla开发者网络找到详细说明,React-Native是否会制作它们? Webstrom也会显示这些代码的错误:(
这些语法是否有详细解释?