作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个 React Native 应用程序。我使用 modal
创建了自己的自定义 alert
作为 component
。当我使用它时,我总是需要在我的 render()
函数中添加我的 alert
组件。
有没有什么方法可以使用自定义警报而不用在我的 render()
函数中渲染它?
我的意思是,我可以在 react-native
中使用 Alert
,方法是将其称为 Alert.alert()
。我也想像那样使用我自己的自定义警报。
我该怎么做?
最佳答案
你可以这样做
class SomeComponent extends Component {
static myComponentInstance
constructor(props) {
super(props)
this.state = {
visible: false,
text: ""
}
SomeComponent.myComponentInstance = this
}
static show(text) {
SomeComponent.myComponentInstance._show(text)
}
_show(text) {
this.setState({ visible: true, text })
}
render(){
<Modal visible={this.state.visible}>
<Text>{this.state.text}</Text>
</Modal>
}
}
const AppRoot = () => (
<View>
<Navigator />
<SomeComponent/>
</View>
)
为了展示它,你可以在任何地方做 SomeComponent.show("some text")
关于javascript - 如何将 React Native 自定义警报作为函数调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56424312/
我是一名优秀的程序员,十分优秀!