Angular error: module ""../../node_modules/rxjs/Observable"" has no exported member "Observable".

Angular error: module ""../../node_modules/rxjs/Observable"" does not have an exported member "Observable".

If you wrote it according to the documentation on the previous official website, but you are using a higher version of Angular, then there will be an error.

Change to:

import { Observable } from 'rxjs';

Guess you like

Origin blog.csdn.net/huangyinzhang/article/details/111827693