In my render
function I want to display a list based on an array, while displaying it works fine, it seems that whatever event I bind to it is being ignored.
render: function() {
var language = function(language) {
return (
<li><label>
<input type="checkbox" value={language} onChange={this.onLanguageChange} />
{language} ({_languages_total[language]})
</label></li>
)
}
return (
<ul className="filter__list">
<li><label>
<input type="checkbox" value="0" onChange={this.onLanguageChange} />
0 (2)
</label></li>
{this.state.languages.map(language)}
</ul>
)
}
I rendered one list item directly outside the .map
to see if it would give any results, and this seems to be the only one that's working.
Am I just missing something obvious, or are events ignored when placed outside the return()
?
Your problem is that the this.onLanguageChange
doesn't refer to the right handler because this
within the language
function is unbound and so when it's executed points to the global object (i.e., window
). You can do a few things to fix it:
var self = this;
before defining language
and refer to self.onLanguageChange
..bind(this)
after the function that you're assigning to render
..map(language, this)
to tell map
what context to use when calling language
. This is the simplest and cleanest solution.If you're not familiar with JavaScript's scoping rules and how this
works, I suggest reading up on it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With