React版本0.12.2修改內容

來源:互聯網
上載者:User

標籤:

React新版本(0.12.2)在2014年12月18日發布,對比了我之前用的v0.11.2版本改動很大,基本的寫法被擴充,讓我頓時感覺自己又要重新開始。坑啊~

事已至此,必須重新適應,首先我們來看看React定義組件的基本寫法:

v0.11.2版本中寫法:

var Klm = React.createClass({    render:function(){        return(             <h1>hello!</h1>            )    }});React.renderComponent(<Klm />,document.body);

 

v0.12.2版本中寫法:

var Klm = React.createClass({    render:function(){        return(             <h1>hello!</h1>            )    }});React.render(<Klm />,document.body);

在這裡renderComponent被簡化為render,這是其一!

var foo = {    width:‘100px‘,    height:‘100px‘,    border:‘1px solid #000‘};var myDivElement = <div style={foo} />;React.render(myDivElement, document.body);

其二:單獨定義某個標籤可以用這種方式。

 

React版本0.12.2修改內容

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.