【发布时间】:2018-12-16 21:07:42
【问题描述】:
我试图在我的函数中设置 React 中的状态,但是我收到一条错误消息,指出:无法读取未定义的属性“setState”。
下面是我的代码,我在构造函数中调用状态,然后在 addTimes 函数中设置状态并将其绑定到该函数,但是我仍然收到错误。
class Settings extends React.Component {
constructor(props) {
super(props);
this.state = {
times: []
};
}
render(){
Array.prototype.remove = function() {
var what, a = arguments, L = a.length, ax;
while (L && this.length) {
what = a[--L];
while ((ax = this.indexOf(what)) !== -1) {
this.splice(ax, 1);
}
}
return this;
};
var currentTicked = [];
var times =[]
function addTimes(id){
var index = times.indexOf(id);
if (!times.includes(id)) {
$("input:checkbox[name=time]:checked").each(function(){
currentTicked.push($(this).val());
times = times.concat(currentTicked)
times = jQuery.unique(times);
});
} else if(times.includes(id)){
times.remove(id)
}
console.log(times);
addTimes = () => {
this.setState({
times: times
});
}
}
【问题讨论】:
-
这对我来说很奇怪` addTimes = () => { this.setState({ times: times }); }`。为什么不直接放 `this.setState({ times: times });`
-
还有为什么要在每次渲染的Array的原型中重新定义函数
remove?
标签: javascript reactjs