1. 程式人生 > >react屬性

react屬性

ops bsp 對象 variable ... reac ria rop end

零:屬性 props

屬性:是不能被修改的,是由父組件傳入的。

一:寫法1:<hello name= ? >

         "name1"

          {123}

         {"name1"}

          {1,2,3}

         {variable}

寫法2:var props={

    one:"123",

    two:321

    }  

    <hello {...props}/> 直接添加one two屬性

    <hello {props}/> 得到props對象

寫法3:var instance=React .render(<hello></hello>,document.body);

   instance.setProps("name","Tim");

react屬性