尝试使用 axios 访问 Wikipedia Api 并收到 CORS 错误。我做了一些研究,并在 stackoverflow 上找到了这篇文章。以下是我拥有的代码:let axiosData = function(){let searchString = $('#searchString').val();console.log(searchString);let Url = "https://en.wikipedia.org/w/api.php?action=opensearch&search="+ searchString + "&origin=&callback=";axios.get(Url) .then(function(res){ console.log(res); }) .catch(function(){ console.log("Error") });return false; }$('form').submit(axiosData);任何帮助,将不胜感激。
添加回答
举报
0/150
提交
取消