我用ajax解析了json。我想在同一页面上显示该解析后的值。因此将该值设置为php变量。并使用python解析该php变量。另外,我也不想使用php或python进行解析。因为,ajax解析过程比php或python解析过程更快。我做了这样的事情:
<?php
if (isset($_GET['data'])){
echo $_GET['data'];
}
else {
?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$.ajax({
url: 'http://ip.jsontest.com/', // example json
type: 'GET',
dataType: 'text',
success: function(data) {
var json_result = JSON.parse(data);
//console.log(json_result); // The whole JSON
window.location.href = "http://localhost/jsn/sample.php/?data="+data;
}
});
</script>
<?php
}
?>
import requests
import pycurl
import urllib.request
c = pycurl.Curl()
c.setopt(c.URL, 'http://localhost/jsn/sample.php/')
# Follow redirect.
c.setopt(c.FOLLOWLOCATION, True)
c.perform()
c.close()
我可以显示由ajax解析的数据。但是我无法用python来获得这些数据的价值。我该如何解决这个问题。