我正在使用 jQuery 调用 JSON web 服务,它工作正常,除了我调用的 URL 需要隐藏在源代码中。我正在尝试使用本地页面作为 $.getJSON 的 url 参数,然后此页面将重定向到 JSON 服务。如果我在浏览器中调用该页面,它会正确重定向并显示 JSON 数据,但 $.getJSON 没有拾取它。
$.getJSON("Customer.html", function (result) {
Customer.html 通过以下方式重定向调用 JSON。
<script>
window.location = "http://MYJSONURL";
</script>
任何其他想法或建议将不胜感激。