2017-10-12 125 views
-2

我想知道如何從我的主要頁面傳遞的狀態的標籤?目前,我正在使用導航將道具從一個頁面轉移到另一個頁面,但是從Tabs看來我無法做到這一點,您有關於如何將道具傳遞給Tabs的函數或示例代碼?通道具反應本土

+0

你好,沒有你的代碼,這是相當大的挑戰,以幫助你:)烏蘇盟軍道具傳遞給嵌套組件,就像傳遞給html標籤的屬性一樣:

+0

Tabs是什麼? –

回答

2

簡單的傳遞狀態的道具是這樣的:

<SampleComponent 
    sampleProps={this.state.MyMainPageState} 
/> 

從那裏你可以在你的SampleComponent道具進行訪問;)

內SampleComponent你可以嘗試登錄它:

//this is the state from your mainPage 
const {sampleProps} = this.props; 
console.log(sampleProps); 

應該這樣做