gpt4 book ai didi

javascript - 使用axios时如何停止javascript中的无限循环?

转载 作者:行者123 更新时间:2023-12-03 14:22:59 25 4
gpt4 key购买 nike

我通过一系列项目进行映射来生成图像,但每次它都会将我的代码发送到无限循环中。这是我的代码:

这是映射代码:

let mySrc = this.state.imageUrl;

{myImages.map(image => {
this.getSrc(userId, image.id);

return(
<img src={mySrc}/>)
})}

这是“getSrc”函数:

getSrc = async (userId, image) => {
axios
.get(`http://mysiteeee.com/api/getimage/${userId}/photo/${image}`, {
auth: {
username: 'username',
password: 'password'
},
responseType: 'blob'
})
.then(res => {
let myUrl = URL.createObjectURL(res.data)
console.log(myUrl)
this.setState({
imageUrl: myUrl
})
})
.catch(err => console.log(err))
}

每当我访问该页面时,它都会一遍又一遍地浏览所有图像 URL/图像。如何只显示图像 URL/图像一次?如何停止无休止地浏览图像?

这是整个组件的代码:

import React from 'react';
import axios from 'axios';

import HeaderTwo from './HeaderTwo';


class FullDescription extends React.Component {
constructor(props) {
super(props);

this.state = {
eventInfo: [],
imageUrl: [],
clicked: false,
}
}

componentDidMount = () => {
window.scrollTo(0,0);

this.props.state.images.map(image =>
this.getSrc(this.props.state.id, image.id))

// this.getSrc(this.props.state.id, this.props.state.images[1].id)
}

changeClicked = (userId) => {
if(this.state.clicked === false){
this.setState({
clicked: true
})
} else {
this.setState({
clicked: false
})
}
}

getSrc = async (userId, image) => {
axios
.get(`http://http://mysiteeee.com/api/getimage/${userId}/photo/${image}`, {
auth: {
username: 'username',
password: 'password'
},
responseType: 'blob'
})
.then(res => {
let myUrl = URL.createObjectURL(res.data)
this.state.imageUrl.push(myUrl)

// this.setState({
// imageUrl: myUrl
// })
})
.catch(err => console.log(err))
}

render() {
let item = this.props.state;
let date = new Date(item.date).toDateString();
let time = new Date(item.date).toLocaleTimeString();
let userId = this.props.state.id;
let myImages = this.state.imageUrl;
let checkMark = <button className='attend-button' onClick={() => this.changeClicked(userId)}>Attend Event</button>;

console.log(myImages)

if(this.state.clicked === true){
checkMark = <button className='attend-button' onClick={() => this.changeClicked(userId)}>&#x2713; Attend Event</button>
} else {
checkMark = <button className='attend-button' onClick={() => this.changeClicked(userId)}>Attend Event</button>
}

return(
<div>
<HeaderTwo/>
<body id="full-description-page">
<div className='images-section'>
{myImages.map(mySrc => <img src={mySrc}/>)}
</div>
<div id='heading-strip'>
<img src={myImages} className='heading-image'/>
<div className='heading-info'>
<p className='date'>{date}<br/>{time}</p>
<p className='name'>{item.name}</p>
<p className='location'><b>Location:</b> <br/>{item.location.name}, {item.location.address}, {item.location.city}, {item.location.state}</p>
<div className='button-area'>
{checkMark}
</div>
</div>
</div>

<br/>
<p className='description'><b>Description:</b> {item.description}</p>


<br/><br/><br/><br/>
<p className='comments-header'><b>Comments:</b></p>
<div className='comments-section'>
{item.comments.map(comment =>
<div className='comments'>
<p>{comment.text}<br/><b>-{comment.from}</b></p>
</div>
)}
</div>
</body>
</div>
)
}
}

export default FullDescription;

最佳答案

代码中的问题是您在渲染方法内调用 getSrc 方法并更新状态

Whenever there is a change in state, React will call the render method.

在这种情况下,React 调用 render 方法,并且在 render 方法中存在状态更新,因此 React 再次调用 render 方法,并且这个过程永远持续下去。

解决方案。

从 render 方法中删除 this.getSrc 并在 componentDidMount 生命周期 Hook 中调用 getSrc 方法。

我也对 map 功能做了一些小改动。

示例。

let myImages = this.state.imageUrl;

{myImages.map(mySrc => <img src={mySrc}/>)}

componentDidMount() {
this.getSrc();
}

关于javascript - 使用axios时如何停止javascript中的无限循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59825663/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com