是否可以在React中连接img src? [英] Is it possible to concatenate an img src in React?

查看:337
本文介绍了是否可以在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=`https://www.cryptocompare.com/{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={`https://www.cryptocompare.com/${this.state.cryImage}`} />

这篇关于是否可以在React中连接img src?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆