搜索

苹果cms内置ajax数据接口说明

作者 : 影视站长圈 发布时间:2020-06-20 人阅读

苹果cms内置ajax数据接口说明

参数
mid:模块1视频2文章3专题
limit:每页条数,支持10,20,30
page:页码,最多不超过20页,防止非法采集
接口地址是index.php/ajax/data.html?mid=1&page=1&limit=10

接口调用参考代码,自行修改

$.ajax({
type: "POST",
dataType: "JSON",
url: "index.php/ajax/data.html",
data:{mid:1,page:1,limit:10},
success:function(data,status){
console.log(data)
},
error:function(XMLHttpRequest,textStatus,errorThrown){
console.log(json_decode.msg)
}
});
标签