react學習筆記

來源:互聯網
上載者:User

標籤:img   表達   入參   四種   筆記   bsp   條件   函數   getname   

 //條件運算式的四種表示方法:

1、三元運算子,this.props.name?this.props.name:"hello world";

2、使用一個函數,裡面可以使用if else語句,然後再用一個變數來擷取返回的值,直接使用該變數就行;

getName:function(){

if(this.props.name)

return this.props.name

else

return "hello world"}

const a = getName();//後面直接是{a}

3、就是直接調用這個函數;{this.getName()}//這裡注意的一點是:this.getName()表示的是擷取的是函數傳回值,而this.getName表示的是調用getName這個函數;

4、使用運算子{this.props.name||"hello world}//表示的就是,如果this.props.name有值就取this.props.name,如果沒有就去hello world

//這就是一個簡單的萬能運算式:

function(obj){

if(obj.props.name)

return obj.props.name

else return "world"

})(this)//後面這個括弧表示的意思就是調用這個函數並傳入參數this

React diff演算法

演算法中,如果節點不同就直接結束比較,拋棄掉舊的節點,產生全新的節點。每次渲染時就會進行diff演算法,在演算法中是不會刪掉舊的節點,而是在舊的節點上進行改動

react學習筆記

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.