第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何將此代碼轉(zhuǎn)換為 async wait 語法?(反應(yīng)本機(jī))

如何將此代碼轉(zhuǎn)換為 async wait 語法?(反應(yīng)本機(jī))

寶慕林4294392 2023-12-14 16:55:19
我正在嘗試通過嘗試將此代碼轉(zhuǎn)換為它來學(xué)習(xí)如何使用異步等待。有人可以指導(dǎo)我完成它嗎?const fetchWeather = () => {    fetch(      "https://samples.openweathermap.org/data/2.5/weather?q=London,uk&appid=***"    )      .then((res) => res.json())      .then((json) => {        setData({ data: json });        setTemp({ temp: (json.main.temp - 273.15).toFixed(2) + " C" });        setCityDisplay({ cityDisplay: json.name });        setIcon({ icon: json.weather[0].icon });        setMain({ main: json.weather[0].main });        setHumidity({ humidity: json.main.humidity + " %" });        setPressure({ pressure: json.main.pressure + " hPa" });        setVisibility({          visibility: (json.visibility / 1000).toFixed(2) + " km",        });      })      .catch((err) => console.warn(err));  };到目前為止我有這個(gè):async function fetchWeatherr() {    try {      const response = (        await fetch(          "https://samples.openweathermap.org/data/2.5/weather?q=London,uk&appid=***"        )      ).json();    } catch (err) {      console.warn("error");    }  }但我不確定是否應(yīng)該使用像 useEffect 這樣的鉤子
查看完整描述

1 回答

?
翻過高山走不出你

TA貢獻(xiàn)1875條經(jīng)驗(yàn) 獲得超3個(gè)贊

你可以這樣做


async function fetchWeatherr() {

  try {

    const response = await fetch(

      'https://samples.openweathermap.org/data/2.5/weather?q=London,uk&appid=***'

    );

    const json = await response.json();

    setData({ data: json });

    setTemp({ temp: (json.main.temp - 273.15).toFixed(2) + ' C' });

    setCityDisplay({ cityDisplay: json.name });

    setIcon({ icon: json.weather[0].icon });

    setMain({ main: json.weather[0].main });

    setHumidity({ humidity: json.main.humidity + ' %' });

    setPressure({ pressure: json.main.pressure + ' hPa' });

    setVisibility({

      visibility: (json.visibility / 1000).toFixed(2) + ' km',

    });

  } catch (err) {

    console.warn('error');

  }

}


查看完整回答
反對(duì) 回復(fù) 2023-12-14
  • 1 回答
  • 0 關(guān)注
  • 160 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)