http://feel.zjut.in/index.php/Api/basic
或者使用普通方式
http://feel.zjut.in/index.php?m=Api&a=basic
获取所有主播信息
http://feel.zjut.in/index.php/Api/dj
获取主播id为15的主播信息
http://feel.zjut.in/index.php/Api/dj?djid=15
获取当前所有默认节目即classid=2的
http://feel.zjut.in/index.php/Api/content
获取往期节目
http://feel.zjut.in/index.php/Api/content?classid=0
http://feel.zjut.in/index.php/Api/content?classid=0
获取节目id为19的节目
http://feel.zjut.in/index.php/Api/content?contentid=19
获取栏目id为3(十佳歌手)中的所有节目
http://feel.zjut.in/index.php/Api/content?classid=3
http://feel.zjut.in/index.php/Api/get_life?djid=15
http://feel.zjut.in/index.php/Api/suggest
这个是*post*的
需要传的参数有suggest,email 和name
例子:
var processFile ='index.php/Api/suggest';
$.ajax({
type : "POST",
url: processFile,
data: "suggest=222&name=酥西黄&email=suzie@admin.com",
success: function(data){
alert(data);
}
});
http://feel.zjut.in/index.php/Api/comment
这个是*post*的
需要传的参数有comment 和djid
例子:
var processFile ='index.php/Api/comment';
$.ajax({
type : "POST",
url: processFile,
data: "djid=22&comment=good",
success: function(data){
alert(data);
}
});
http://feel2.zjut.com/index.php/Api/live
http://feel2.zjut.com/index.php?m=Api&a=live
ThinkPHP做的吧?