Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
提供给我们的 API 网络服务需要与我们的 HTML5 网站集成。我尝试过使用$.getor$.ajax但没有通过 API 获取数据返回的运气。API 返回 的内容类型 text/x-json。
$.get
$.ajax
text/x-json
您需要重新架构您的应用程序:
对您需要添加后端代码(Java、PHP 等)的服务器执行 AJAX 调用,根据您的请求从 weather.com 获取这些代码。然后,您的 AJAX 调用将从您的后端获取结果并将该信息添加到您的前端。