2015-10-05 39 views
6

我在某些react-js庫中看到如下所示的一些語法。這是什麼意思,如何可以幫助我在我的代碼?什麼是在React JS之前的這個關鍵字?

const inputAttributes = { 
    id: 'events-playground', 
    placeholder: 'Where are you now?', 
    onChange: ::this.onInputChanged, 
    onBlur: ::this.onInputBlurred 
}; 

謝謝。

回答

11

這是.bind新ES7語法,

相當於ES5

const inputAttributes = { 
    id: 'events-playground', 
    placeholder: 'Where are you now?', 
    onChange: this.onInputChanged.bind(this), 
    onBlur: this.onInputBlurred.bind(this) 
}; 
+0

感謝。我可以在我的反應代碼中使用它,還是使用有限制? –

+2

@Amin Mousavi你可以使用Babel等轉譯器...... –

相關問題