0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

keitamaxAdvent Calendar 2024

Day 16

画像がうまく読み込みできなかった時にNoImageを表示させたい

Last updated at Posted at 2024-12-15

はじめに

こんにちは、エンジニアのkeitaMaxです。

画像がうまく読み込みできなかった時にNoImageを表示させ方を調べたので記事にします。

Reactを使用しています。

結論

以下のようにすると画像が読み込めなかった時にNoImageを出すことができます。

<img
    src={url}
    onError={(event) => {
        const target = event.currentTarget
        target.src = "/imgs/unnamed.jpg" 
    }}
/>

onErrorを使用することで、エラーになった時にunnamedを出しています

おわりに

この記事での質問や、間違っている、もっといい方法があるといったご意見などありましたらご指摘していただけると幸いです。

最後まで読んでいただきありがとうございました!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?