我正在使用访存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:无法获取