为了账号安全,请及时绑定邮箱和手机立即绑定

React Native 调用回调函数

React Native 调用回调函数

繁花如伊 2023-04-27 17:21:13
我的自定义组件上有一个函数,它基本上是一个回调,用于从调用它的地方重新呈现(this.setState())组件。我正在为这些调用的正确语法而苦苦挣扎。你能帮忙吗?自定义组件export class LanguageSelector extends Component {afterChange(callback: any){    callback();}导入 LanguageSelector 的其他组件:<LanguageSelector afterChange={() => { this.setState({}) }} ></LanguageSelector>语言选择器    import React, { Component } from 'react';import {    View,} from 'react-native';import { TouchableOpacity } from 'react-native';import Flag from 'react-native-flags';import { Global } from '../global'import PropTypes from 'prop-types';export class LanguageSelector extends Component {    afterChange(callback: any) {        callback();    }    changeLang(lang: string) {        Global.localizedStrings.setLanguage(lang);        //this.setState({});    }    render() {        return (            <View style={{ paddingBottom: 10, flexDirection: "row", alignSelf: "flex-end" }}>                <TouchableOpacity onPress={() => this.changeLang('de')}>                    <Flag code="DE" size={32} />                </TouchableOpacity>                <TouchableOpacity onPress={() => this.changeLang('en-US')}>                    <Flag code="GB" size={32} />                </TouchableOpacity>            </View>        )    }}
查看完整描述

1 回答

?
翻过高山走不出你

TA贡献1875条经验 获得超3个赞

抱歉,您以为您使用的是 Typescript,您有这个选项,或者直接在您想要的地方使用 this.props.afterChange()。


interface LanguageSelectorProps{

   afterChange: () => void;

}

export class LanguageSelector extends Component<LanguageSelectorProps> {


     constructor(props) {

      super(props);

      this.afterChange = this.afterChange.bind(this);

    }


    afterChange() {

        this.props.afterChange(); // callback ,use whatever you want 

    }


    changeLang(lang: string) {

        Global.localizedStrings.setLanguage(lang);

        //this.setState({});

    }


    render() {

        return (


            <View style={{ paddingBottom: 10, flexDirection: "row", alignSelf: "flex-end" }}>

                <TouchableOpacity onPress={() => this.changeLang('de')}>

                    <Flag code="DE" size={32} />

                </TouchableOpacity>

                <TouchableOpacity onPress={() => {

                    this.changeLang('de')

                    this.afterChange(); 

                 }>

                    <Flag code="GB" size={32} />

                </TouchableOpacity>

            </View>


        )

    }


查看完整回答
反对 回复 2023-04-27
  • 1 回答
  • 0 关注
  • 175 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信