文件名称:react:React自述文件
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-08 03:41:12
#React 组件 使用Render方法时,第一个参数是您要渲染的组件,第二个参数是它应该安装到的DOM节点。 您可以使用createClass方法来自定义组件类。 它以规范对象作为参数。 var MyComponent = React . createClass ( { render : function ( ) { return ( < h1> Hello, world! < / h1 > ) ; } } ) ; 然后将其渲染如下: React . render ( < MyComponent> , document . getElementById ( 'myDiv' ) ) 支持Ez? 道具 如上所述定义组件后,就可以添加称为道具的属性。 这些属性在您的组件中作为this.p
【文件预览】:
react-master
----README.md(5KB)