类型“any”的参数不能赋给类型“never”的参数。ts解决:您可以将any类型的newUser强制转换为never类型可以解决此问题:this.userObj.assigned_to.push(newUser as never);