我尝试在反应组件中通过jquery应用样式但是我收到错误Uncaught TypeError: this.getDOMNode is not a function
topicsVisited(arr){
$(function() {
$.each(arr, function(key, eachVisitedTopic) {
console.log(eachVisitedTopic);
$(this.getDOMNode()).find('.single-topic[data-topic-id="' + eachVisitedTopic + '"]').css({
'background-color': 'red'
});
});
});
};
答案 0 :(得分:1)
您需要绑定您的函数才能正确使用this
。
topicsVisited(arr) {
$(function() {
$.each(arr, function(key, eachVisitedTopic) {
console.log(eachVisitedTopic);
$(this.getDOMNode()).find('.single-topic[data-topic-id="' + eachVisitedTopic + '"]').css({'background-color': 'red'});
}.bind(this));
}.bind(this);
}
或创建一个引用正确的this
。
topicsVisited(arr) {
var self = this;
$(function() {
$.each(arr, function(key, eachVisitedTopic) {
console.log(eachVisitedTopic);
$(self.getDOMNode()).find('.single-topic[data-topic-id="' + eachVisitedTopic + '"]').css({'background-color': 'red'});
});
};
}
答案 1 :(得分:1)
试试这个
topicsVisited(arr){
var ReactDom = require('react-dom');
var self = this;
$(function() {
$.each(arr, function(key, eachVisitedTopic) {
console.log(eachVisitedTopic);
$(ReactDOM.findDOMNode(self)).find('.single-topic[data-topic-id="' + eachVisitedTopic + '"]').css({
'background-color': 'red'
});
});
});
};