首页 > 解决方案 > 如何使用从 React.js 中的数据库检索的图像路径显示图像

问题描述

我正在尝试使用 api axios 显示图像,api 正在从数据库中检索路径图像,但图像未加载

import axios from 'axios';

类产品扩展组件{

state={
        products:[],
};

componentDidMount() {
    axios.get(`http://localhost/CraveByMarwa/public/api/products`)
      .then(res => {
        const products = res.data;
        this.setState({ products });
      })
  }

render() {
    return (
        <div>
<div className="block-section big-spacer">
<div className="container">
  <h3 className="section-title" data-aos="fade-up" style={{fontSize: 55, textAlign: 'center'}}>
    <span style={{color: 'rgba(209, 0, 0, 1)'}}>Plans &amp; Pricing
    </span>
  </h3>
</div>
<div className="container">
  <div className="row">
{ this.state.products.map(products =>
    <div className="col-md-4">
      <div className="block-img">
        <div className="flip-card">
          <div className="flip-card-inner">
            <div className="flip-card-front">
              <img src={products.productImagePath} alt={products.title} style={{width: 300, height: 500}} />

标签: reactjslaravelimageapiaxios

解决方案


我找到了在公共文件夹中创建图像文件并将路径添加到数据库的解决方案,例如:数据库将类似于 'image/123.png'


推荐阅读