gpt4 book ai didi

javascript - 如何在 React Native 中呈现包含 View 的函数?

转载 作者:行者123 更新时间:2023-11-30 09:58:14 24 4
gpt4 key购买 nike

如何在 React Native 中渲染包含 View 的函数?我得到的是一个空白的白屏

这不起作用:

    class App extends React.Component {
render() {
return (
<View style = { styles.container }>
{this._renderMapView.bind( this )}
</View>
);
}

_renderMapView () {
return <MapView style = { styles.mapView } </MapView>
}
}

这个有效:

    class App extends React.Component {
render() {
return (
<View style = { styles.container }>
<MapView style = { styles.mapView } </MapView>
</View>
);
}
}

最佳答案

试试这个。不使用 bind(this)

<View style = { styles.container }>
{this._renderMapView()}
</View>

或者像这样使用bind(this):

<View style = { styles.container }>
{this._renderMapView.bind(this)()}
</View>

因为你正在调用一个函数。

关于javascript - 如何在 React Native 中呈现包含 View 的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32952778/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com