0
我對React Native非常陌生。React Native - 使組件接受視圖作爲道具並顯示它
在我的項目中,我有一個看起來像這樣的要求。
我有一個名爲BaseComponent
的Component
,它接受一個視圖作爲道具並在其渲染方法中將其顯示在可觸摸的高亮區中。
我使用此BaseComponent
在我的CustomComponent
通過傳遞一個視圖作爲道具。這個正在傳遞的View
是從名爲getView()
的函數返回的。但它顯示出一個空白的屏幕。
// BaseComponent.js
import React, { Component } from 'react'
import {
View,
TouchableHighlight
} from 'react-native'
export default class BaseComponent extends Component {
render() {
return(
<TouchableHighlight onPress= { this.onPress.bind(this) } >
<View>
{
this.props.contentView
}
</View>
</TouchableHighlight>
);
}
}
-
// CustomComponent.js
import React, { Component } from 'react'
import { Text } from 'react-native'
import BaseComponent from './BaseComponent'
export default class CustomComponent extends Component {
getView() {
return(
<Text> Hello { this.props.name }! </Text>
)
}
render() {
<BaseComponent contentView={ this.getView.bind(this) }>
}
}
謝謝你的答案!但不幸的是,這不是我正在尋找的。我需要的是,我應該能夠將視圖作爲一個道具傳遞給BaseComponent,並使其在返回方法內呈現。這個答案不能幫助解決這個問題。 :( –
哦..對不起..我編輯我的答案,我希望能回答你的問題。:) – muhammadaa
非常感謝你!這確實奏效。奇怪的是,我曾嘗試過這一點。但由於某種原因沒有工作。但是這次它確實奏效了! :) –