gpt4 book ai didi

reactjs - useEffect 和上下文 api

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

我遇到了一个奇怪的问题, useEffect 没有注意到上下文 api 正在更改的值的更改。我有一个我想在每次更改某个值时运行的提取,并且我正在使用上下文 api 来管理我的状态值,但它似乎从未注意到。当我传递 Prop 而不是使用上下文 api 时,我没有遇到这个问题。我没有使用这个技巧吗?控制台错误是:./src/Components/CustomTrip.js
第 33:12 行:React Hook useEffect 缺少依赖项:'fetchDistance'。包括它或删除依赖数组 react-hooks/exhaustive-deps

import React, {useContext, useEffect } from 'react'
import { COORDS } from "./coords"
import { MileContext } from './MileContext';
import useCalculateTotals from "./CalculateTotals";

const CustomTrip = () => {
const {locationOne, locationTwo, setLocationOne, setLocationTwo, setTotalMiles } = useContext(MileContext);

const onLocationOneChange = (event) => {
setLocationOne(event.target.value)
}
const onLocationTwoChange = (event) => {
setLocationTwo(event.target.value)
}
const onTotalMileChange = (value) => {
setTotalMiles(value)
};
useCalculateTotals();

async function fetchDistance()
{
const res = await fetch("https://api.mapbox.com/directions-matrix/v1/mapbox/driving/" + locationOne + ";" + locationTwo + "?sources=1&annotations=distance&access_token=pk.eyJ1Ijoiam9zaGlzcGx1dGFyIiwiYSI6ImNqeTZwNGF1ODAxa2IzZHA2Zm9iOWNhNXYifQ.X0D2p9KD-IXd7keb199nbg")
const mapBoxObject = await res.json();
const meters = mapBoxObject.distances[0];
const miles = parseInt(meters) * 0.00062137119;
console.log(miles.toFixed(2));
onTotalMileChange(miles.toFixed(2));
console.log(miles);
}

useEffect(() => {
fetchDistance()
}, [locationOne, locationTwo]);

return (
<div>
<h3>Customize your trip</h3>
Mileage will be calculated as a round trip.
<br/>
Select your starting point
<select value={locationOne} onChange={onLocationOneChange}>
{
Object.entries(COORDS).map(([campus, coordinates]) => (
<option key={campus} value={coordinates}>
{campus}
</option>
))}
</select>
Select your destination
<select value={locationTwo} onChange={onLocationTwoChange}>
{
Object.entries(COORDS).map(([campus, coordinates]) => (
<option key={campus} value={coordinates}>
{campus}
</option>
))}
</select>
</div>
)
};

export default CustomTrip;

这是更多 umm 上下文的 api 上下文。
import React,{useState, createContext} from 'react';

export const MileContext = createContext();

export const MileProvider = props => {
const [totalMiles, setTotalMiles] = useState(0);
const [drivers, setDrivers] = useState(1);
const [rentalPaddingDay, setRentalPaddingDay] = useState(1);
const [hotelCost, setHotelCost] = useState(0);
const [hotelDays, setHotelDays] = useState(0);
const [hotelTotal, setHotelTotal] = useState(0);
const [drivingDays, setDrivingDays] = useState(0);
const [hotelNights, setHotelNights] = useState(0);
const [hours, setHours] = useState(0);
const [meals, setMeals] = useState(0);
const [laborCost, setLaborCost] = useState(0);
const [truck26Total, setTruck26Total] = useState(0);
const [truck16Total, setTruck16Total] = useState(0);
const [vanTotal, setVanTotal] = useState(0);
const [mealCost, setMealCost] = useState(0);
const [vanFuelCost, setVanFuelCost] = useState(0);
const [rental26Cost, setRental26Cost] = useState(0);
const [rental16Cost, setRental16Cost] = useState(0);
const [truck26Fuel, setTruck26Fuel] = useState(0);
const [truck16Fuel, setTruck16Fuel] = useState(0);
const [trip, setTrip] = useState("Custom");
const [locationOne, setLocationOne] = useState("-97.4111604,35.4653761");
const [locationTwo, setLocationTwo] = useState("-73.778716,42.740913");
const [gas, setGas] = useState(2.465);
const [diesel, setDiesel] = useState(2.91);

return (
<MileContext.Provider
value = {{
totalMiles,
setTotalMiles,
drivers,
setDrivers,
rentalPaddingDay,
setRentalPaddingDay,
hotelCost,
setHotelCost,
hotelDays,
setHotelDays,
hotelTotal,
setHotelTotal,
drivingDays,
setDrivingDays,
drivers,
setDrivers,
hotelNights,
setHotelNights,
hours,
setHours,
meals,
setMeals,
laborCost,
setLaborCost,
truck26Total,
setTruck26Total,
truck16Total,
setTruck16Total,
vanTotal,
setVanTotal,
mealCost,
setMealCost,
vanFuelCost,
setVanFuelCost,
rental26Cost,
setRental26Cost,
rental16Cost,
setRental16Cost,
truck26Fuel,
setTruck26Fuel,
truck16Fuel,
setTruck16Fuel,
trip,
setTrip,
locationOne,
setLocationOne,
locationTwo,
setLocationTwo,
gas,
setGas,
diesel,
setDiesel
}}>
{props.children}
</MileContext.Provider>
)
}

最佳答案

除了另一个文件中的错字外,代码很好。经过进一步审查,我发现导入的 COORDS 对象中有空格,当放置在 api 调用的 url 中时,这些空格被转换为 %20。删除空格立即解决了问题。

关于reactjs - useEffect 和上下文 api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61604836/

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