为什么订阅服务的http get方法时不需要调用取消订阅?
例如:
this.configService.getConfig ()
.subscribe ((data: Config) => this.config = {
heroesUrl: data ['heroesUrl'],
textfile: data ['textfile']
});
有人可以告诉我为什么在这种情况下不必取消订阅,但是当我订阅表单(例如值更改)时我必须这样做。