微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在 React Native Typescript

如何解决如何在 React Native Typescript

我想传入 countryCasescountryDeaths 常量,它们使用 useState 文件中的 Data.tsx。我想传递它们并在 OtherScreen.tsx 文件中使用它们。我该怎么做?

Data.tsx

interface DataCardProps {
  onPress: () => void;
}

const Covid19DataCard = ({ onPress }: DataCardProps) => {

  const [earliest2,setEarliest2] = useState([]);
  const [countryDeaths,setcountryDeaths] = useState(Number);
  const [countryCases,setcountryCases] = useState(Number);
  
  useEffect(() => {
    axios
      .get("https://coronavirus-19-api.herokuapp.com/countries")
      .then((response) => {
        setEarliest2(response.data);

        const enteredCountryName = countryNameshort;
        const countryArray = response.data.filter(
          (item) => item.country === enteredCountryName
        );

        const resCountryDeaths = countryArray[0].deaths;
        setcountryDeaths(resCountryDeaths);

        const resCountryCases = countryArray[0].cases;
        setcountryCases(resCountryCases);
      })
      .catch((err) => {
        console.log(err);
      });
  },[]);
}

OtherScreen.tsx

import Data from './Data';

const OtherScreen = ({ navigation,}: StackNavigationProps<Routes,"SearchScreen">) => {
  <Text>{Data.countryCases}</Text> //???
}
export default OtherScreen;

它们都使用不同的 props,如果我尝试传入 Data.countryCases,我会收到错误 Property 'countryCases' does not exist on type '({ onPress }: DataCardProps) => Element'. 任何帮助表示赞赏:)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。