我正在React中製作一個小應用程序,使用Axios獲取隨機圖像。我正在使用React-bootstrap來設置圖像的樣式,但是在圖像加載完成之前,會顯示一個半小時的白色框。我該如何解決這個問題?在完成api調用之前顯示的React-bootstrap樣式
這是我的代碼:
import React, { Component } from 'react';
import axios from 'axios';
import { Link } from 'react-router-dom';
import { Image, Button } from 'react-bootstrap';
const ROOT_URL = 'myurl'
export default class WhatDog extends Component {
constructor(props){
super(props);
this.state = { randomImg: '' };
}
componentDidMount(){
axios.get(ROOT_URL)
.then(res => {
const data = res.data.message
this.setState({ randomImg: data })
})
}
renderImage(){
return(
<div>
<Image src={this.state.randomImg} className="img" thumbnail/>
<Link to="/">
<Button bsStyle="danger" bsSize="large">Go back</Button>
</Link>
</div>
)
}
render() {
return (
<div className="App">
{
(this.state.randomImg === '')
? <div>
<h1>Loading...</h1>
</div>
: <div>
{this.renderImage()}
</div>
}
</div>
);
}
}
你沒有看到** Loading ... **? –
我看到加載,但我也看到它下面的小空白框。 – FakeEmpire
圖像需要一些時間,直到它實際上完成由瀏覽器加載。 – webdeb