简体   繁体   English

React Native:无效的钩子调用

[英]React Native: Invalid hook calls

I am trying to get accustomed with React Native.我正在尝试习惯 React Native。 Currently I have these nested FlatLists (where the first level displays a list of RenderedOrders , whereas these RenderedOrders themselves have a FlatList within them).目前我有这些嵌套的 FlatLists(其中第一级显示RenderedOrders列表,而这些RenderedOrders本身有一个 FlatList 在其中)。

This is the main screen:这是主屏幕:

const ActiveScreen = () => {
    const [isLoading, setLoading] = useState(true);
    const [data, setData] = useState([]);
    const [isLoadingApi, setLoadingApi] = useState(true);
    const [orderData, setOrderData] = useState([])

    /* Fetch currently taken orders */
    useEffect(() => {
        getTakenOrders()
            .then((data) => setData(data))
            .catch((error) => console.error(error))
            .finally(() => setLoading(false));
    }, []);

    /* Fetch order info from API */
    useEffect(() => {
        fetch('https://alessandro-visualizr.herokuapp.com/api/orders/NEFACTURAT')
            .then((response) => response.json())
            .then((json) => setOrderData(json))
            .catch((error) => console.error(error))
            .finally(() => setLoadingApi(false));
    }, []);

    return (
        <View style={{ flex: 1, padding: 24 }}>
            {isLoading || isLoadingApi ? <ActivityIndicator/> : (
                <FlatList
                    data={data}
                    keyExtractor={({ id }, index) => id}
                    renderItem={({ item }) => (RenderedOrder(item, orderData)) }
                />
            )}
        </View>
    );
}

export default ActiveScreen;

While this is the above-mentioned component:虽然这是上述组件:

import React, {useEffect, useState} from "react";
import {FlatList, Text, View} from "react-native";
import {removeTakenOrder} from "../screens/OrderScreen";

function RenderedOrder(orderId, orderData) {
    const [triggered, setTriggered] = useState(true);

    return (
        <View
            style={{ flex: 1}}
        >
            <View
                style={{ fontSize: 20, borderRadius: 5, borderWidth: 1,
                    marginBottom: 10, padding: 10, backgroundColor: 'rgba(34, 139, 34, 0.75)', color: 'black',
                    flex: 1 }}
            >
                <Text
                    style={{ fontSize: 24 }}
                >
                    #{orderId}
                </Text>

                <View
                    style={{ alignItems: 'flex-end' }}
                >
                    <Text
                        style={{ fontWeight: 'bold', color: 'red', fontSize: 20 }}
                        onPress={() => removeTakenOrder(orderId)
                            .then(() => alert("Order #" + orderId + " has been removed"))
                        }
                    >
                        X
                    </Text>
                </View>

            </View>

            {true &&
                <FlatList
                    data={orderData.filter((order) => (order.orderId === orderId))[0].products}
                    keyExtractor={({ id }, index) => id}
                    listKey = {orderId}
                    renderItem={({ item }) => (
                        <View>
                            <Text
                                style={{ fontSize: 18, padding: 5 }}
                            >
                                - {item.name}
                                <Text style={{ fontWeight: 'bold' }}> x{item.quantity} </Text>
                            </Text>
                        </View>
                    )}
                />
            }
        </View>
    );
}

export default RenderedOrder;

However, when running this example I am confronted with this issue (due to RenderedOrder 's state declaration):但是,在运行此示例时,我遇到了这个问题(由于RenderedOrder的 state 声明):

Invalid hook call. Hooks can only be called inside the body of a function component.

I understand that in React, states can only be used within function and not class components.我知道在 React 中,状态只能在 function 中使用,而不能在 class 组件中使用。 However I admit the differences between these two are not that clear to me.但是,我承认这两者之间的差异对我来说不是那么清楚。 Am I commiting a mistake here?我在这里犯错了吗?

You are using RenderedOrder as function instead of a functional component:您正在使用RenderedOrder作为function而不是functional组件:

Change this:改变这个:

renderItem={({ item }) => (RenderedOrder(item, orderData)) }

To this:对此:

renderItem={({ item }) => <RenderedOrder item={item} orderData={orderData} /> }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM