嗨,我是棱角分明的新手,无法解决问题。
我从服务器获取了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 ??