接口标识:system
接口url:https://你的网站/index.php?s=xiaochengxu&c=home&m=system
接口参数:无
小程序代码:
返回的信息:
- swan.request({
- url: that.globalData.api + "action=system",
- data: {
- aid: that.globalData.aid
- },
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded', // 默认值
- 'x-appsecret': that.globalData.appsecret
- },
- success: function (res) {
- let system = res.data.data;
- that.globalData.system = system;
- try {
- swan.setStorageSync('system', system)
- } catch (e) {
- }
- }
- })