服务器的接口返回JSON格式的数据。
然后你再ajax发起网络请求的时候,记得编写成功后的相应函数,这样就可以在接收到数据之后,做一些操作。
不懂继续问我。
实时获取推荐使用Socket。定时获取数据的话写个定时器,每10秒获取一次数据。
定时:
var t = null
t = setInterval(function(){
//获取数据的代码
},10000)
要用jquery<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script><!--这个文件可以在 http://jquery.com/ 下 -->
<script type="text/javascript">
<!--
$(document).ready(function(){
$.ajax({
type:'GET',
url:'https://graph.facebook.com/me?access_token=xxxxxxxxxxxx&callback=callback',
dataType:'jsonp',
cache:false,
success:function(msg){ //这里会返回获取到的数据,并将json转为array了
alert(msg['error']["type"])
}
})
})
-->
</script>