将道具传递给挂钩组件变得不确定

时间:2020-03-13 13:39:17

标签: reactjs react-hooks

我如何在两个挂钩组件中传递道具?

我有一个使用Modal的根组件,我需要将道具title传递给我的<Modal title="test" /> 组件并在组件中显示:

const Modal = (title) => {

return (
    <h6>{title}</h6>
)

在模态组件中,我正在接收道具作为参数:

const Modal = ({title}) => {

但是我收到未定义的信息。

我也尝试过{}:

Selector.ItemsSource = new int[] { 1, 2, 3 };

为什么?

1 个答案:

答案 0 :(得分:1)

您需要在子组件中引用props对象:

let makeFile = res.view('file.ejs',{result:result});

fs.writeFile(sails.config.myconf.path+'file.xml', makeFile, function (err, result) {
    if(err){
        console.log(err)
        return
    }
});

或通过销毁:

const Modal = (props) => {

return (
    <h6>{props.title}</h6>
)