1.JSX 循环变量的时候,每个节点需要有key,
2.箭头函数没有'{', 直接返回,如:
// e => { return ('<div></div>'); } // 可以这样写: e => ('<div></div>');
3.父组件调用子组件的方法用Ref,即可。