摘要: 阅读全文
posted @ 2022-07-23 22:30 前端导师歌谣 阅读(232) 评论(0) 推荐(0)
摘要: import { Spin } from 'antd'; ReactDOM.render(<Spin />, mountNode); 阅读全文
posted @ 2022-07-23 22:30 前端导师歌谣 阅读(134) 评论(0) 推荐(0)
摘要: render() { const { anchors = [], //锚点数组,link-节点id,title-显示文字 content, //左侧内容 } = this.props; return ( <div style={{ display: 'flex' }}> <div style={{ 阅读全文
posted @ 2022-07-23 22:30 前端导师歌谣 阅读(64) 评论(0) 推荐(0)
摘要: import { Anchor } from 'antd'; const { Link } = Anchor; const onChange = link => { console.log('Anchor:OnChange', link); }; ReactDOM.render( <Anchor a 阅读全文
posted @ 2022-07-23 22:30 前端导师歌谣 阅读(187) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-23 22:30 前端导师歌谣 阅读(17) 评论(0) 推荐(0)
摘要: 定义和用法 concat() 方法用于连接两个或多个数组。 该方法不会改变现有的数组,而仅仅会返回被连接数组的一个副本。 阅读全文
posted @ 2022-07-23 22:30 前端导师歌谣 阅读(214) 评论(0) 推荐(0)
摘要: <From> <FormItem> //JS代码书写时需要用 { } 包裹起来,不能直接写在代码块中 { getFieldDecorator('userName',{ initialValue:'Jack', rules:[ { required:true, message:'用户名不能为空' }, 阅读全文
posted @ 2022-07-23 22:30 前端导师歌谣 阅读(83) 评论(0) 推荐(0)
摘要: {...this.props}是props所提供的语法糖,可以将父组件的所有属性复制给子组件 阅读全文
posted @ 2022-07-23 22:30 前端导师歌谣 阅读(33) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-23 22:30 前端导师歌谣 阅读(32) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2022-07-23 22:29 前端导师歌谣 阅读(29) 评论(0) 推荐(0)