现在前端越来越向后端发展了,做为后端开发人员必须了解,熟悉前端
web前端高级进阶 内容列表
1.HTML5专题
4.VUE全家桶专题
5.React进阶专题
react渲染份三步
1.定义容器
2.创建虚拟:var div= dom (React.createElement(‘div‘,{className:‘div1‘},‘hello world‘)
3.将虚拟DOM渲染到页面:ReactDOM.render(div,document.getElementById("app"));
4.jsx 将模板转换为html语言
5.组件:
class Hello extends React.Component{
render(){
return <h1> hello </h1>
}
}
ReactDOM.render(
<Hello></Hello>,
document.getElementById("app")
)
6.底层源码剖析专题
7.Node专题
8.webpack 工程化及git工具
原文:https://www.cnblogs.com/csj007523/p/12332973.html