关于React-Native的一些JavaScript语法问题

时间:2016-08-07 02:54:29

标签: javascript react-native

我已阅读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也会显示这些代码的错误:(

这些语法是否有详细解释?

1 个答案:

答案 0 :(得分:1)

这个项目正在使用Flow,一个静态类型检查器(看起来像TypeScript一样)。