您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“React中ref回調函數實現的方式有哪些”,內容詳細,步驟清晰,細節處理妥當,希望這篇“React中ref回調函數實現的方式有哪些”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
ES6回調函數
這里我們使用ES6回調函數實現獲取焦點
var MyComponent = React.createClass({
handleClick: function() {
// Explicitly focus the text input using the raw DOM API.
if (this.myTextInput !== null) {
this.myTextInput.focus();
}
},
render: function() {
return (
<div>
<input type="text" ref={ (ref)=>this.myTextInput = ref } />
<input
type="button"
value="Focus the text input"
onClick={this.handleClick}
/>
</div>
);
}
});
CommonJs回調函數實現
var MyComponent = React.createClass({
handleClick: function() {
// Explicitly focus the text input using the raw DOM API.
if (this.myTextInput !== null) {
this.myTextInput.focus();
}
},
render: function() {
return (
<div>
<input type="text" ref={ function(ref){this.myTextInput = ref}.bind(this) } />
<input
type="button"
value="Focus the text input"
onClick={this.handleClick}
/>
</div>
);
}
});
注意:在上面代碼中,使用的是CommonJs語法,回調函數function(){}后面有.bind(this)。這是需要注意的地方,綁定this,使function內的this對象是該組件。如果不綁定this,那么在handleClick中的this.myTextInput將會報未定義的錯誤。這是需要注意的地方,在ES6中就不存在這個問題。
讀到這里,這篇“React中ref回調函數實現的方式有哪些”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。