API接口
//微信自带请求
wx.request({
url:util.config.appApiUrl+'/GetData/index',
data:{ key: util.config.accesskey, model:"sysconfig"},
method:'POST',
header: {
'content-type': 'application/x-www-form-urlencoded'
},
dataType:'json',
success:function(res){
console.log(res);
}
});
- 网站API接口为:
/GetData/index
- 完整链接:
https://域名/GetData/index
- 请求参数:
`key` : API访问密钥 [必填]
`model` : 查询的模块标识 [必填]
`limit` : 查询条数 [非必填]
`orders` : 查询排序,如:`id desc,addtime desc` [非必填] 默认 `id asc`
`fields` : 查询字段,如:`id,title,body` [非必填] 默认全部
`isshow` : 查询是否显示 [非必填]
`tid` : 查询栏目ID [非必填]
其余参数,自行根据需求写
- 返回数据JSON格式:
{
code : 0,
data : [ ],
}
code=0
为正确返回code=1
为请求错误data
为数组