最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Display image from API In React - Stack Overflow

programmeradmin0浏览0评论

I am trying to display an image from my API. The code I am using so far does not seem to work, in the src of the image it shows just the string not the image i.e <img src="{data.home[0].image}" alt="image">.

My code so far is:

  import React, { Component } from 'react';
  import '../main/main.css';

  class Main extends Component {
      constructor() {
          super();
          this.state = {
              name: 'React',
              awsApiData: [],
          };
      }

      ponentDidMount() {
          console.log('app mounted');
          /*global fetch */
          fetch('')
              .then(data => data.json())
              .then(data => this.setState({ awsApiData: data }, () => console.log(data)));
      }

      render() {
          const data = this.state.awsApiData;
          return (
              <div className="main-content container">
           {(data && data.home) &&
              <div><h2>{data.home[0].title}</h2><br /><p>{data.home[0].body}</p>
              <img src="{data.home[0].image}" alt="image"></img>
              </div>
          }    
      </div>
          );
      }
  }
  export default Main;

I am trying to display an image from my API. The code I am using so far does not seem to work, in the src of the image it shows just the string not the image i.e <img src="{data.home[0].image}" alt="image">.

My code so far is:

  import React, { Component } from 'react';
  import '../main/main.css';

  class Main extends Component {
      constructor() {
          super();
          this.state = {
              name: 'React',
              awsApiData: [],
          };
      }

      ponentDidMount() {
          console.log('app mounted');
          /*global fetch */
          fetch('https://onelbip0e6.execute-api.eu-west-2.amazonaws./livestage/xxxx')
              .then(data => data.json())
              .then(data => this.setState({ awsApiData: data }, () => console.log(data)));
      }

      render() {
          const data = this.state.awsApiData;
          return (
              <div className="main-content container">
           {(data && data.home) &&
              <div><h2>{data.home[0].title}</h2><br /><p>{data.home[0].body}</p>
              <img src="{data.home[0].image}" alt="image"></img>
              </div>
          }    
      </div>
          );
      }
  }
  export default Main;
Share Improve this question asked Mar 10, 2020 at 16:41 SoleSole 3,35818 gold badges71 silver badges134 bronze badges 4
  • 3 Can you try changing src="{data.home[0].image}" to src={data.home[0].image} .. Remove double quotes around the curly brackets.. – Maniraj Murugan Commented Mar 10, 2020 at 16:44
  • That worked, cant believe it was the speech marks, Can you add answer and I can mark as correct – Sole Commented Mar 10, 2020 at 16:45
  • 1 " " is always a string. {} is JSX syntax for a javascript expression. To use a variable within JSX you must use the {} syntax, and not from within a string. – Brian Thompson Commented Mar 10, 2020 at 16:46
  • @Sole, Answer has been added added.. – Maniraj Murugan Commented Mar 10, 2020 at 16:49
Add a ment  | 

2 Answers 2

Reset to default 5

You are assigning the value of string to img src so it will give the output as string only.

You need to use curly braces to embed a JavaScript expression in an attribute.

So try changing

<img src="{data.home[0].image}" alt="image">

to (Remove the quotes around curly {} brackets)

<img src={data.home[0].image} alt="image">

Don’t put quotes around curly braces when embedding a JavaScript expression in an attribute. You should either use quotes (for string values) or curly braces (for expressions), but not both in the same attribute.

Reference Link here..

Please post your api response as well.

See if changing src="{data.home[0].image}" to src={data.home[0].image} helps

发布评论

评论列表(0)

  1. 暂无评论