在这篇博文中,我将带您了解一个实际场景,其中父组件 (ListBox) 与子组件 (AlertComponent) 使用 props 和回调。
当您希望子组件与父组件通信以维护状态或触发操作时,这在 React 中非常有用。
让我们通过这个例子来理解:
以下是交互细分:
import React, { useState } from 'react'; import AlertComponent from './AlertComponent'; const ListBox = () => { const [showComponent, setShowComponent] = useState<boolean>(false); const alertAction = async () => { setShowComponent(!showComponent); }; return ( <div> <div onLongPress={alertAction}> <p>Item 1</p> {/* Other list items */} </div> {/* Passing props to the child component */} <AlertComponent title="Deleting item?" description="Click Accept to delete." onAccept={() => { alert('Item Deleted'); setShowComponent(false); }} onCancel={() => setShowComponent(false)} showComponent={alertAction} /> </div> ); }; export default ListBox;
export const AlertComponent: = ({ title, description, onAccept, onCancel, showComponent }) => { return (<AlertDialog> ... rest of the code </AlertDialog>) }
showComponent 作为回调工作,因为它维护负责显示/隐藏 AlertComponent
的状态每当按下 Reject 时,此回调将切换 showComponent 的当前状态。
<AlertComponent title="Deleting item?" description="Click Accept to delete." onAccept={() => { alert('Item Deleted'); setShowComponent(false); }} onCancel={() => setShowComponent(false)} showComponent={alertAction} />
以这种方式使用 props 和 callbacks 可以让 React 中父组件和子组件之间的数据清晰流动。
父级可以控制状态并将其传递给子级,而子级可以通过回调进行通信,以通知父级用户执行的任何更改或操作。
这对于显示警报、模式或弹出窗口以响应用户交互等场景特别有用。
继续建设!
以上是shell 中的 Props 和回调的详细内容。更多信息请关注PHP中文网其他相关文章!