在我的SuggestBox组件中,我发现有时event.target.value有时会变得不确定,我无法找到解决方法。
import React from 'react';
import $ from 'jquery';
let debounce = require('lodash.debounce');
let uniqueKey = 0;
let jqxhr = {
abort: () => {
}
};
export default class SuggestBox extends React.Component {
constructor(props) {
super(props);
this.doneTyping = debounce(this.doneTyping.bind(this), this.props.delay);
this.state = {
hidden: true,
data: []
}
}
render() {
const hidden = this.state.hidden ? {display: 'none'} : {display: 'block'};
return (
<div className="ReactSuggestion-Wrapper">
<input
type="text"
onChange={this.onChange.bind(this, event)}
onFocus={this.showSuggestBox.bind(this, event)}
onBlur={this.hideSuggestBox.bind(this, event)}
/>
<div style={hidden} className="ReactSuggestion-SuggestionBox">
{this.state.data.map((item) => {
return (
<ul key={uniqueKey++} className="ReactSuggestion-SuggestionList">
<li className="ReactSuggestion-SuggestionHeader">
<p>
{item.header.title}
</p>
</li>
{item.data.map((data, dataKey) => {
return (
<li key={dataKey} className="ReactSuggestion-SuggestionItems">
<a className="ReactSuggestion-Data">
<div className="ReactSuggestion-Data__Thumbnail">
<img src={data.image} className="ReactSuggestion-Data__ThumbnailImage"/>
</div>
<div className="ReactSuggestion-Data__Details">
<p className="ReactSuggestion-Data__DetailsPrimary">
{data.primary}
</p>
<p className="ReactSuggestipn-Data__DetailsSecondary">
{data.secondary}
</p>
</div>
</a>
</li>
)
})}
</ul>
);
})}
</div>
</div>
)
}
showSuggestBox(event) {
if (event.target.value == '') {
return false;
}
if (this.state.oldValue == event.target.value) {
this.setState({
hidden: false
})
}
}
hideSuggestBox(event) {
this.setState({
hidden: true,
oldValue: this.state.value
})
}
onChange(event) {
this.setState({
value: event.target.value
})
this.doneTyping()
}
doneTyping() {
const self = this;
jqxhr = $.ajax({
url: this.props.url,
data: {q: this.state.value},
type: this.props.method,
dataType: 'JSON',
success: relay => {
let empty = false;
relay.forEach(item => {
empty = item.data.length > 0 ? false : true;
})
if (empty)
return false;
self.setState({
data: relay,
hidden: false
})
}
})
}
}
SuggestBox.propTypes = {
url: React.PropTypes.string,
method: React.PropTypes.string,
delay: React.PropTypes.number
}
正如你在我的构造函数中看到的那样有
this.doneTyping = debounce(this.doneTyping.bind(this), this.props.delay);
阻止事件池反应的代码,所以反应服从debounce,但在我的ajax请求中,我的event.target.value或this.state.value变得未定义,我无法发送ajax请求。但有时候它可以修复自己并发送值。
如何防止这种情况?
答案 0 :(得分:0)
您将window.event绑定为事件处理程序的第一个参数。在此处将fn.bind(this, event)
更改为fn.bind(this)
<input
type="text"
onChange={this.onChange.bind(this, event)}
onFocus={this.showSuggestBox.bind(this, event)}
onBlur={this.hideSuggestBox.bind(this, event)}
/>
执行fn.bind(this, arg1, arg2)
时,您正确地绑定了this
上下文,但同时还指定了额外的参数,这些参数将在调用该函数时添加到参数列表中。
更具体地说,如果您执行showSuggestionBox.bind(this)
,则this
将成为您的SuggestionBox
实例,并且您的参数将如下所示:
showSuggestionBox(reactEvent)
但是,如果您执行showSuggestionBox.bind(this, event)
(如上面的操作),则将像这样调用您的函数:
showSuggestionBox(window.event, reactEvent)
因此,您关心的React事件将由window.event
代替。
我只是在猜测,但我不认为React保证将以与onEvent
生命周期相匹配的方式调用您的window.event
回调。
因此,您可以考虑将event === undefined
作为正常的代码路径,而当您获得一个值时,您将很幸运地获得了计时。