ReactJs Temel Yaklaşım
  • Başlangıç
  • Ortam Hazırlığı
  • Merhaba Dunya - Webpack
  • Arayüz Hazırlığı - UI
  • Çoklu Component
  • Props
  • State
  • SetState
  • If, Else, Switch Örnekleri
  • Form Kullanım Örnekleri
Powered by GitBook
On this page

Was this helpful?

SetState

PreviousStateNextIf, Else, Switch Örnekleri

Last updated 5 years ago

Was this helpful?

Oluşturulan veya var olan state'lerin güncelleme ve aksiyon oluşturma.

  // setState React.js için global bir metot'dur 

     ....
    guncelle(){
        this.setState({card_baslik: 'Gule Gule'});
    }
    ....
    <Button onClick={this.guncelle.bind(this)}>Tıkla Bana</Button>

(imaj) 16-18.satır ve 31.satır