Angular 5 - angular添加localhost:风格

时间:2018-02-08 11:52:45

标签: html angular typescript angular-cli

嗨,我是棱角分明的新手,无法解决问题。 我从服务器获取了localhost:8080的图片网址,但是当我尝试将网址设置为background-image时,它无效。 在app.component.html中:

<div class="card" [style.background-image]="tempImg">
</div>

在component.ts

import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  tempImg = "http://localhost:8080/image/X_X_X_BG.png";
}

当我在控制台中运行此代码时收到错误: http://localhost:4200/localhost:8080/image/X_X_X_BG.png - 404未找到。

如何忽略第一个localhost:4200 ??

0 个答案:

没有答案