2

我有一个网络应用程序。在我的右侧栏中,我有 3 个帖子。当我点击一个帖子时,我有一个导航:

    this.router.navigate(['../post', this.post.id]);

有一个帖子配置文件组件将接管。这个组件有一个函数,它从一个服务中调用一个函数,该服务获取我具有指定 id 的帖子。现在,我将在我的内容区域(屏幕左侧)中看到该帖子的所有详细信息。此函数(获取我的帖子)仅在 Post Profile 组件的 ngOnInit 中调用。

如果我从右侧栏中单击另一个帖子,我可以看到 url 的变化,但不会调用获取我的帖子的函数,并且我的内容区域的帖子详细信息也不会改变。如果我现在刷新页面,我可以看到我想要的帖子,一切正常。

如果有帮助,我的功能上有 .subscribe。

我看不出问题。

这是我的 PostProfileComponent

        constructor(postsService: PostsService, route: ActivatedRoute ) {
    this.postsService = postsService;

    this.routeSubscription = route.params
        .subscribe((params: any) => {
            this.postId = params['id'];
        });
}

public getPostById(id: any): void {
    this.postsService.getPostById(id)
        .map((response: Post) => {
            this.post = response;
            console.log(this.post);
        })
        .catch((error: any) => {
            return error;
        })
        .subscribe();
}

ngOnInit(): void {
    this.getPostById(this.postId);
}
4

1 回答 1

1

在您的 Post Profile 组件的 ngOnInit 方法中,您必须订阅ActivatedRoute paramsObservable。

  subs1: Subscription;
  constructor(private route: ActivatedRoute){}

  ngOnInit() {
     this.subs1 = this.route.params
         .subscribe((params: Params) => {
             const postId = params['id'] ? +params['id'] : '';
             if(postId){
                //  call the function (that gets the post)
             }
         });
  }
于 2017-10-07T16:48:33.217 回答