是否可以在React中连接img src?

编程入门 行业动态 更新时间:2024-10-26 07:28:38
本文介绍了是否可以在React中连接img src?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

这可能是一个愚蠢的问题,但是我试图将React中的图像源连接到屏幕上,但是它不起作用。

This might be a silly question but I'm trying to concatenate the source of an image in React to be rendered on the screen, but it's not working.

<img src=`www.cryptocompare/{this.state.cryImage}` />

在this.state.cryImage中,我仅获得链接的后半部分(我正在拉来自API的数据),例如:

In this.state.cryImage, I only get the second half of the link (I'm pulling data from an API) so for example it would be something like:

media / 19633 / btc.png

我串联不正确,或者这是不可能的吗?

Am I concatenating incorrectly or is this just not possible?

推荐答案

您已经错过了$符号和方括号作为属性

You've missed $ sign and brackets for attribute

<img src={`www.cryptocompare/${this.state.cryImage}`} />

更多推荐

是否可以在React中连接img src?

本文发布于:2023-08-02 18:01:22,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1279938.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:React   img   src

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!