wer*_*wer 7 javascript reactjs
我从子组件中的父级调用函数“booksRefresh()”,但出现错误:
类型错误:booksRefresh 不是函数
我不知道为什么,因为 'booksRefresh' 是一个函数。有人可以帮我解释为什么会出现这个错误吗?
这是我的代码:
import React, {useState} from "react";
import {Redirect} from "react-router";
import {addBook} from "../api/api";
import {Button} from "react-bootstrap";
const AddBookForm = (booksRefresh) => {
const [title, setTitle] = useState();
const [description, setDescription] = useState();
const [submitted, setSubmitted] = useState(false);
const postRequestHandler = () => {
addBook(title, description);
booksRefresh();
}
...
return (
...
<Button type="submit" onClick={postRequestHandler} variant="outline-success">Add</Button>
</div>
)
Run Code Online (Sandbox Code Playgroud)
家长:
function App({history}) {
...
const [changeInBooks, setChangeInBooks] = useState(0)
const booksRefresh = () => {
let incrementChangeInBook = changeInBooks + 1;
setChangeInBooks(incrementChangeInBook)
}
return (
<div className="App">
<header className="App-header">
...
<Button variant="outline-success" onClick={() => history.push("/new-book")}>
{ADD_BOOK}</Button>
...
</header>
<Switch>
...
<Route path="/new-book" exact render={() =>
<AddBookForm
booksRefresh={booksRefresh}/>
}/>
...
</Switch>
</div>
);
}
export default withRouter(App);
Run Code Online (Sandbox Code Playgroud)
React 函数组件接收的参数是它的props,它是一个对象,每个属性都有命名属性。所以你AddBookForm的参数不应该是booksRefresh,而是(按照惯例)props,然后你通过props.booksRefresh()以下方式使用它:
const AddBookForm = (props) => {
// ??????????????????^^^^^
const [title, setTitle] = useState();
const [description, setDescription] = useState();
const [submitted, setSubmitted] = useState(false);
const postRequestHandler = () => {
addBook(title, description);
props.booksRefresh();
// ?????^^^^^^
}
// ...
Run Code Online (Sandbox Code Playgroud)
或者,如果它是唯一的道具,您可以像 adiga 所示使用解构:
const AddBookForm = ({booksRefresh}) => {
Run Code Online (Sandbox Code Playgroud)