使用angular6从mongodb获取图像到网站

时间:2018-08-13 14:19:20

标签: html angular image angular6

我正在网站上工作,我想从数据库中获取一个图像到网站标题。

我有一个客户ID,每个客户都有不同的徽标。现在我不知道如何用角形显示徽标。

这是我未完成的代码:

通过客户ID获取图像的组件:

logo: string;
companyName: string;

ngOnInit() {
    this.currentLang = this.translate.getDefaultLang();
    this.languages = this.translate.getLangs();

    this.activatedRoute.queryParams.subscribe((params: Params) => {
        const customerId = params["customerId"];
        if (customerId) {
            this.userService.getCustomer(customerId)
                .subscribe(customer => {
                    this.logo = customer.logo, this.companyName = customer.name
                });
        }
    });
}

在这里,我想显示选定的徽标:

<div class="logo">
      <span class="logo-type"><img src="{{ customer.logo }}"></span>
</div>

1 个答案:

答案 0 :(得分:0)

知道了,这很简单。只需写'logo'

<div class="logo">
   <span class="logo-type"><img src="{{ 'logo' }}"></span>
</div>