在Redux Thunk中链接操作的正确方法



我首次使用redux thunk。固定操作的正确方法是什么?

我想在给出用户输入后以及与Google Maps API的数据响应后获取位置,然后我想立即使用该数据来获取该位置的天气。 Redux thunk正在工作,但仅用于首次操作(获取位置(。 request2中的Data2总是undefined,您能告诉我为什么是吗?

 export function fetchLocation(city) {
      const urlGoogle = `https://maps.googleapis.com/maps/api/geocode/json?address=${city}&key=${API_KEY_GOOGLE}`;
      const request = axios.get(urlGoogle);
      return (dispatch) => {
        request.then(({ data }) => {
          dispatch({ type: FETCH_LOCATION, payload: data });
          const lat = data.results["0"].geometry.location.lat;
          const lng = data.results["0"].geometry.location.lng;
          const urlWunder = `https://api.wunderground.com/api/${API_KEY_WUNDERGROUND}/forecast10day/q/${lat},${lng}.json`;
          console.log(urlWunder); // Link is ok, it works in browser
          const request2 = axios.get(urlWunder);
          request2.then(({ data2 }) => {
            console.log('Data2', data2);  // Getting undefined, why ?
            dispatch({ type: FETCH_WEATHER, payload: data2 });
          });
        });
      };
    }

很可能第二个请求不会返回名为response.data2的字段,因此当您破坏它时,data2将不确定。您可能仍然需要查找名为data的字段,但给它一个不同的本地参数名称,例如: request2.then({data : data2})

最新更新