我在React w/ Hooks前端使用axios发出get请求,使用rails后端的种子数据填充react-google-maps/API GoogleMaps Marker组件。当我让rails服务器运行时,服务器会重复执行此调用。
下面的代码行导致在循环中调用axios.get
:
React.useEffect(() => {
// Get Coordinates from api
// Update Coordinates in state
axios.get('/api/v1/coordinates.json')
.then(response => response.data.data.map(coord =>
setCoordinateFromApi(coord.attributes)))
.catch(error => console.log(error))
}, [coordinates.length])
这成功地填充了map,但意味着我不能使用onClick's
功能(因为我假设堆栈顶部有此请求?)
我在Rails中CoordinatesController上的索引方法:
def index
coordinates = Coordinate.all
render json: CoordinateSerializer.new(coordinates).serialized_json
end
NB:这是我第一个将React链接到Rails并使用Hooks的项目
1条答案
按热度按时间ttygqcqt1#
我假设您有上面定义的useState:
如果是,那么这就是根本原因:
这样,只要
coordinates.length
发生变化,React.useEffect就会调用axios.get
,这将使useEffect成为一个无限循环(因为只要axios请求完成,坐标值就会发生变化)。如果只想执行一次,则只需在useEffect上传递一个空数组,如下所示
这样,您的
axios.get
将只被调用一次,并且您将不再有无限循环