我的Angular应用程序中有一个博客供稿,与Contentful相关。感谢内容丰富的javascript SDK。

https://www.contentful.com/developers/docs/javascript/tutorials/using-contentful-in-an-angular-project/

我正在尝试显示“标题”和“文本”字段。这是我的代码:

import { Component, OnInit } from '@angular/core';
import {Observable} from 'rxjs';
import {ContentfulService} from '../../services/contentful/contentful.service';
import { Entry } from 'contentful';

@Component({
  selector: 'app-blog',
  templateUrl: './blog.component.html',
  styleUrls: ['./blog.component.scss']
})
export class BlogComponent implements OnInit {
  private posts: Entry<any>[] = [];

  constructor(private postService: ContentfulService) {}

  ngOnInit() {
    this.postService.getPosts()
      .then(posts => {
        this.posts = posts;
        console.log(this.posts);
      });
  }
}


和html:

<div *ngFor="let post of posts">
    <a href="#">{{ post.fields.title }}</a>
    <div>{{ post.fields.text }}</div>
</div>


title字段显示得很好,因为它只是一个字符串字段,但是text字段是RichText并显示[object Object]。

实际上它包含几个对象。似乎该对象被分为几部分。

https://www.contentful.com/developers/docs/concepts/rich-text/

有人已经在Angular应用中显示了Contentful RichText吗?
有特定的方法可以做到吗?

最佳答案

首先,您必须从终端安装rich-text-html-renderer:

npm install @contentful/rich-text-html-renderer


然后,您可以从组件中导入它:

import { documentToHtmlString } from '@contentful/rich-text-html-renderer';


并使用它,就像这样:

_returnHtmlFromRichText(richText) {
    if (richText === undefined || richText === null || richText.nodeType !== 'document') {
      return '<p>Error</p>';
    }
    return documentToHtmlString(richText);
}


最后,从您的html中“调用函数”,如下所示:

<div [innerHtml]="_returnHtmlFromRichText(post.fields.text)">
</div>


您还可以添加一些选项来自定义富文本,更多信息here。另外,您应该在Contentful服务中编写类似于_returnHtmlFromRichText的函数,以便以后可以重用。

08-05 03:03