JavaScript:为什么这个承诺没有返回值?

时间:2020-09-25 13:04:29

标签: javascript fetch es6-promise fetch-api

我迷上了一个应该从API提取数据然后返回预定义类型数组的函数。但是,我总是会收到一条错误消息,指出A function whose declared type is neither 'void' nor 'any' must return a value.

我真的不明白为什么会显示此消息,因为我的函数中有一个返回语句,即使在获取数据时发生错误:

export async function queryOpenCage(query: string): Promise<MarkerPoint[]> {
  const {opencageApiKey}: ClientSettings = JSON.parse(
    document.getElementById(ElementID.Settings)!.textContent!
  )
  const fetchURL = `https://api.opencagedata.com/geocode/v1/json?key=${opencageApiKey}&q=${query}&limit=5&pretty=1`
  const resultItems: MarkerPoint[] = []
  fetch(fetchURL)
    .then(response => {
      return response.json()
    })
    .then(json => {
      const items = json.results.map((res: any) => {
        return {
          lat: res.geometry.lat,
          lng: res.geometry.lng,
          address: res.formatted
        }
      })
      return resultItems.push(...items)
    })
    .catch(error => {
      return []
    })
}

任何帮助或建议都将受到高度赞赏!

1 个答案:

答案 0 :(得分:0)

fetch(fetchURL)

应该是

return fetch(fetchURL)