“this.setState ist keine Funktion” Code-Antworten

Dieser.SetState ist keine Funktion bei React Native

constructor(props) {
    super(props)
    this.onClick = this.onClick.bind(this)
}

 onClick () {
     this.setState({...})
 }
Azad Kshitij

this.setState ist keine Funktion

VK.api('users.get',{fields: 'photo_50'},function(data){
    if(data.response){
        this.setState({ //the error happens here
            FirstName: data.response[0].first_name
        });
        console.info(this.state.FirstName);
    }

}.bind(this));
Outrageous Osprey

Ähnliche Antworten wie “this.setState ist keine Funktion”

Fragen ähnlich wie “this.setState ist keine Funktion”

Weitere verwandte Antworten zu “this.setState ist keine Funktion” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen