下面是组件&提前感谢您:
import React, { Component } from 'react';
import { connect } from "react-redux";
class Timer extends Component {
constructor(props) {
super(props);
this.state = { seconds: 0 }
this.intervalHandle;
}
//Component receives this.props.started === true properly
componentDidMount() {
if (this.props.started) {
this.startTimer();
}
}
//startTimer triggers correctly logging "STARTING"
startTimer() {
console.log("STARTING")
this.intervalHandle = setInterval(
this.tick, 1000);
}
//tick also triggers correctly logging "Ticking" every 1000ms
tick() {
console.log("TICKING")
//HERE IS THE ERROR: Uncaught TypeError: Cannot read property
//'seconds' of undefined, the console throws it once a seconds
this.setState({ seconds: this.state.seconds + 1 })
}
componentWillUnmount() {
if (!this.props.started) {
clearInterval(this.intervalHandle);
}
}
// Component initialy renders
render() {
return <span>:0{this.state.seconds}</span>
}
}
function mapStateToProps(state) {
return {
started: state.isStarted
}
}
export default connect(mapStateToProps)(Timer);
未定义它的原因是因为this.tick是一个函数,您没有绑定它。
将其更改为
this.intervalHandle = setInterval(this.tick.bind(this), 1000);
或将其绑定在构造函数中
constructor(props){
super(props);
this.tick = this.tick.bind(this);
}
this.intervalHandle = setInterval(this.tick, 1000);
this.intervalHandle = setInterval(() => this.tick(), 1000);
tick = () => {
console.log("TICKING")
this.setState({ seconds: this.state.seconds + 1 })
}
在.citydoor.imports.catalog.tools中打包;
Guice提供了一种使用toConstructor()方法与对象的特定构造函数创建绑定的方法。 @Override protected void configure() { try { bind(SpellChecker.class) .toConstructor(SpellCheckerImpl.class.getConstructor(String.clas
我想做一个简单的POJO(POKO?)在Kotlin中使用一个默认的空构造函数和一个带有参数的辅助构造函数创建一个类,该类提供属性 这并没有给我和属性: 这为我提供了属性,但它们在实例化后没有设置: 这给了我一个编译错误,说“不允许在二级构造函数参数上使用'var'”: 那么,这是怎么做到的?我如何拥有一个默认构造函数和一个带有参数和属性的二级构造函数?
问题内容: 我已经加载了内容模块,我得到的具体错误是: 有什么想法吗?我是从以下教程中获得的:http : //developer.android.com/guide/topics/ui/notifiers/notifications.html 问题答案: 更改此: 至 发生错误是因为在这种情况下,它引用的实例,但构造函数需要一个。您必须传递的上下文是对活动本身的引用,因此您必须使用显式访问它。
问题内容: 好的,我正在做学校的作业,我设置了我的主班和另一个名为“交易”的班。在我的主班我有: 带下划线的交易:表示构造函数未定义。为什么?! Transaction类如下所示: 看起来它应该可以工作,但事实并非如此。即使当我在main中创建新Transaction对象的位置插入一堆变量时,它仍然显示未定义。有人请帮忙! 问题答案: 您的类中没有默认的构造函数定义。 当您提供至少一个参数化构造函