markdown 38 - 传递未知的道具

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 38 - 传递未知的道具相关的知识,希望对你有一定的参考价值。

- missing props, reason for this is that in our HOC withClass component, we're outputting wrappedComponent
- wrappedComponent can be either App.js or Person.js
- these components get props but they don't anymore because we don't pass them in wrappedComponent
- we can't hard code these props obviously
- there is a simple thing we can do, pass on the existing props
- do this by taking advantage of the spread operator: props is just an object of key/value pairs
- `<WrappedComponent {...props} />`
- the above simply means pass on the props as you get them, split them up into key/value pairs

以上是关于markdown 38 - 传递未知的道具的主要内容,如果未能解决你的问题,请参考以下文章

如何将 Django 变量传递给 Vue 道具

React.js:将道具从函数传递到组件

将 AJAX 结果作为道具传递给子组件

将组件作为道具传递时在 Flow 中键入 React 组件

如何修复“警告:未知道具`change-background`,<div>标签上的`colorcode`。从元素中删除这些道具”错误?

使用 LinkContainer 和来自 React Bootstrap 的 MenuItem 的未知道具“活动”