背景: 学习cocos creator时遇到"TypeError: Cannot set property 'string' of null" 错误。 具体代码如下: @property({ type: Label }) public stepsLabel: Label | null = null; update(deltaTime: number) { this.stepsLabel.string = '' + Math.floor(this.count/600); } 原因:还是要注意的,我记得我当时有进行挂载的