简体   繁体   English

从管道将图像插入到“背景图像”中

[英]insert image in a 'background-image' from a pipe

I have the following code in my html document:我的 html 文档中有以下代码:

<div *ngFor="let search of this.mySearches; let i = index" class="col-sm-6 col-xs-12">
                  <div class="box">
                    <div class="image img-search-rounded">
                      <img [src]="search.postPath | imagenpost: search.generic_category: search.postImg[0]" alt="image" title="image" id="img-rounded" class="img-responsive img-rounded">
                    </div>
                    <div class="pull-left">
                      <h4>{{search.generic_category}}<i class="la la-angle-double-right"></i>{{search.generic_type}}</h4>
                      <p><i class="la la-map-marker"></i>{{search.generic_city}}</p>
                      <p><i class="la la-clock-o"></i> {{search.date | date:'medium'}}</p>
                      <p><i class="la la-circle"></i> Get email notifications</p>
                    </div>
                    <div class="pull-right">
                      <button type="button" [routerLink]="search.url">View</button>
                      <button type="button" (click)="removeMySearch(search._id)">Delete</button>
                    </div>
                  </div>
                </div>

but I get this and not the image:但我得到了这个而不是图像:

错误图像

How could I render the image?我怎么能渲染图像?

It's not quite clear what you're trying to do.目前还不清楚你想要做什么。 It seems like you are trying to do an OR using a ternary operator, but you are missing the else part.似乎您正在尝试使用三元运算符进行 OR 运算,但您错过了 else 部分。

The condition should be something like条件应该是这样的

<div [ngStyle]="{'background-color':person.country === 'UK' ? 'green'
> : 'red' }"></<div>

Read more about the example here此处阅读有关示例的更多信息

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM