angular universal update meta tags with dynamic content
问题 Hey I'm having an issue I have this blogs page that brings in dynamic data, and with that data I want to use it to populate meta tags so for example I'm doing something like this getBlogPost() { this.http.get(...) .subscribe(result => { this.blogPost = result; this.meta.updateTag({ name: 'description', content: this.blogPost.fields.metaDescription }); this.meta.updateTag({name: 'robots', content: 'INDEX, FOLLOW'}); this.title.setTitle(this.blogPost.fields.blogName); this.meta.updateTag({name: