提取api typeError:无法提取

时间:2019-11-05 20:45:03

标签: javascript

我正在使用访存api做一个应用程序,但出现此错误

     function postRequest(input) {
    var headers = new Headers();
      headers.append('Content-Type','application/x-www-form-urlencoded');
    return fetch(`https://*****(api).spoonacular.com/recipes/search?query=${input}`,{
      method: 'get',
      mode:"cors",
      header:headers,
    })
    .then(response => response.json())
  }
  postRequest('milk')
  .then(data => console.log(data)) // Result from the `response.json()` call
  .catch(error => console.error(error))

错误: 无法加载资源:net :: ERR_NAME_NOT_RESOLVED main.js:14 TypeError:无法获取

0 个答案:

没有答案