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.
即使只是一个简单的<?php readfile($_GET['url']) ?>结果也会导致不可接受的错误。
<?php readfile($_GET['url']) ?>
有什么想法吗?
这只是行不通,因为使用 AJAX,您会受到同源策略的限制。因此,除非您的网站实际上托管在 isbndb.com 中,否则这将永远不会起作用。
来自W3C 文档 3.6.1.13
如果 url 的来源与 XMLHttpRequest 的来源不同,则引发 SECURITY_ERR 异常并终止这些步骤。
您必须在服务器上解析来自 isbndb.com 的数据然后返回,您不能使用 AJAX 进行跨域调用。