どういう意味...小道具?コードは次のとおりです。ReactJSでは何の意味ですか?
export default class NavItem extends React.Component {
constructor() {
super();
}
render() {
const { router, index, to, children, ...props } = this.props;
let isActive = false;
if (router.isActive('./', true) && index) {
isActive = true
children
私はそれが何を意味するのでしょ...props
それが実際の要素の子であると仮定し、しかし?
ありがとうございます。この文脈で使用
の可能性のある重複[における3つのドットがそう反応しない何に?](http://stackoverflow.com/questions/31048953/what-does-the-three-dots-in-react-do) –
'const {children、... props} = this.props;'は、props.childrenを子に割り当て、this.propsのすべての残りの値をpropsに割り当てます。 – elmeister