簡體   English   中英

在 html 上顯示圖像的組件的 Angular 7 問題。 為什么圖片不顯示?

[英]Angular 7 problem with component to show image on html. Why isn't the image showing?

我在做一個點擊貓游戲,當我使用img將貓的圖像的路徑放在組件的模板中時,運行頁面時沒有出現圖像。

我嘗試使用 [img]="path" 將 img 用作屬性,並且還直接輸入到 img 元素的路徑

模板:

<div>{{catName1}}</div>
<div>
    <img src="./image/cat.jpg" (click)="clickUp()">
</div>
<div>{{catClick1}}</div>
</div>

打字稿

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

@Component({
 selector: 'app-root',
 templateUrl: './app.component.html',
 styleUrls: ['./app.component.css']
})
export class AppComponent {

  catName1 = 'Misho';
  catImg1 = 'image/cat.jpg';
  catClick1 = 0;

  clickUp(){
    this.catClick1 += 1;
  }

} 

它是如何顯示的

圖片的文件夾

您的代碼一切正常。

只需將您的圖像文件夾從

/src/app/image

/src/assets

目錄並更改src

應用程序組件.html

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM