组件中的 React 函数

React function in a component

我在 React 中使用组件工作,但我无法在输入组件中使用函数。

我尝试搜索组件和 onChange 或 onKeyPress,但它们没有显示我需要的内容。也许我搜索错了?我确实让组件 Button 工作了,只是没有输入。

组件的代码很简单。

import React from 'react';
import styles from './Input.module.css';

function Input({inputText}) {
    return <input type='number'
                  placeholder={inputText}
                  className={styles.input}
    />
}

export default Input;

我想用于组件Input的完整代码如下。

import React, {useState} from 'react';
import styles from './Food.module.css';
import axios from 'axios';
import Nutrients from '../../components/nutrients/Nutrients'
import {ReactComponent as LoadingIcon} from '../../assets/loading.svg'
import Button from "../../components/button/Button";
import Input from "../../components/input/Input";

function Food() {
    const [food, setFood] = useState(null);
    const [calories, setCalories] = useState('');
    const [disabled, setDisabled] = useState(false);
    const [error, setError] = useState('');
    const [loading, toggleLoading] = useState('');

    async function foodData() {
        setError('');
        toggleLoading('true')

        try {
            const result = await axios.get(`https://api.spoonacular.com/mealplanner/generate?apiKey=${process.env.REACT_APP_API_KEY}&timeFrame=day&targetCalories=${calories}`);
            setFood(result.data);
        } catch (error) {
            setError('Oops... something went wrong. Please try again.');
            console.log('Something went wrong while retrieving the data.', error);
        }
        toggleLoading(false);
    }

    function handleChange(e) {
        setCalories(e.target.value);
    }

    function handleKeyPress(e) {
        if (e.key === 'Enter') {
            if (disabled) {
                return;
            }
            foodData();
            setDisabled(true);
        }
    }

    return (
        <>
            {error && <p className={styles.error}>{error}</p>}
            <div>
                <section className={styles.food}>

                    <Input
                        inputText='Enter caloriessss'
                        onChange= {handleChange}
                        onKeyPress={handleKeyPress}
                    />
                    <Button
                        onClick={() => {
                            foodData();
                            setDisabled(true);
                        }}
                        buttonText='Click for your daily meals'
                    />
                </section>
                {loading && <LoadingIcon className={styles.loader}/>}
                {food && <Nutrients mealsData={food}/>}
            </div>
        </>
    );
}

export default Food;

我想要的是让 onChange 和 onKeyPress 这两个函数在 Input 组件中工作。

有人有什么想法吗?我也试过使用 () 和 ''.

因为您没有在 Input 组件中使用道具 onChangeonKeyPress 。只需像这样添加:

function Input({ inputText, onChange, onKeyPress }) {
  return (
    <input
      type="number"
      placeholder={inputText}
      className={styles.input}
      onChange={onChange}
      onKeyPress={onKeyPress}
    />
  );
}

或更短的方式:

function Input({ inputText, ...props }) {
  return (
    <input
      type="number"
      placeholder={inputText}
      className={styles.input}
      {...props}
    />
  );
}

在输入组件中,您的 return 应该是:<input></input> 因为 JSX 需要关闭标签。

React 无法知道 onChangeonKeyPress 道具应该传递给 Input 组件内部的 input

您必须明确传递它们。

// Add them to your destructured props
function Input({inputText, onChange, onKeyPress}) {
    return <input type='number'
      onChange={onChange} // Pass them to the input
      onKeyPress={onKeyPress} // Pass them to the input
      placeholder={inputText}
      className={styles.input}
    />
}