下面的 PHP 代码从服务器 A 获取 html 到服务器 B。我这样做是为了规避浏览器的同域策略。(jQuery的JSONP也可以用来实现,但我更喜欢这种方法)
<?php
/*
This code goes inside the body tag of server-B.com.
Server-A.com then returns a set of form tags to be echoed in the body tag of Server-B
*/
$ch = curl_init();
$url = "http://server-A.com/form.php";
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER,FALSE);
curl_exec($ch); // grab URL and pass it to the browser
curl_close($ch); // close cURL resource, and free up system resources
?>
如何在 Python 中实现这一点?我确定 Python 中也有 Curl 实现,但我还不知道该怎么做。