我想创建一个页面 index.php ,每当向 post.php 发布帖子请求时,该页面应自动(不刷新)弹出包含帖子数据的提醒。
脚本 send.py 和 post.php 完美运行,每次{"key":"i"}
返回,但 index.php 不显示任何内容。我的代码有什么问题?
的index.php
<script src="jquery.js"></script>
<script>
$.ajax({
type: "GET",
url: "post.php",
dataType: "json",
success: function(data){
alert(data.key);
}
});
post.php中
<?php echo json_encode($_POST); ?>
send.py
import urllib2, urllib
import time
for i in range(3):
mydata=[('key',i)]
mydata=urllib.urlencode(mydata)
path='http://localhost/post.php'
req=urllib2.Request(path, mydata)
req.add_header("Content-type", "application/x-www-form-urlencoded")
page=urllib2.urlopen(req).read()
print page
time.sleep(5)