这是密码:'
constructor(obj?: any) {
this.id= obj && obj.id||null;
this.title= obj && obj.title || null;
this.description= obj && obj.description || null;
this.thumbnailUrl= obj && obj.thumbnailUrl || null;
this.videoUrl= obj && obj.videoUrl ||
`https://www.youtube.com/watch?v=${this.id}`;
}
在14度角下不起作用
我什么都没试过
2条答案
按热度按时间vfhzx4xs1#
第一件事是你不会像那样使用构造函数。你应该使用构造函数来注入服务和提供者。我很肯定你尝试完成的事情可以用ngOnInit和类中的一个方法来完成。如果你需要在ngOnInit之前赋值它们,你仍然可以把东西放在构造函数中。只是你不能在那里初始化它们。你要做的是在构造函数之前初始化变量。
czq61nw12#
您可以简单地删除***对象&&***
试如下