gpt4 book ai didi

react-native - 为什么 Flow/Nuclide 在我的 React-Native 组件中向我显示警告 "not covered by Flow"?

转载 作者:行者123 更新时间:2023-12-02 01:20:11 24 4
gpt4 key购买 nike

我开始使用流程并拥有一个简单的组件:

// @flow
import React, { Component } from 'react';
import {
Text,
ScrollView
} from 'react-native';

const Conversations = (props: { messages: string }) => (
<ScrollView>
<Text>{props.messages}</Text>
</ScrollView>
);

export default Conversations;

在 Nuclide 中,我看到这个警告“警告,类型覆盖率,未被 Flow 覆盖”。它指向第 9 行,我在这里使用 <ScrollView> .

enter image description here

这是为什么/这是什么意思/我该如何解决?

最佳答案

您已打开类型覆盖功能(见屏幕截图)。您可以单击状态栏中的百分比来打开和关闭它。它让您知道 Flow 有哪些表达式的类型,哪些没有类型(这意味着您可以对它们做任何事情,Flow 不会警告您)。

type coverage feature

关于react-native - 为什么 Flow/Nuclide 在我的 React-Native 组件中向我显示警告 "not covered by Flow"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40586608/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com