接口标识:system
接口url:https://你的网站/api/index.php?action=system
接口参数:
字段名称 | 字段说明 | 类型 | 必填 | 备注 |
---|---|---|---|---|
more | 调用站点配置 | num | 可不填 | 调用网站后台系统配置里边的全局参数 |
如果不传递任何参数表示只调用小程序基本参数(后台-小程序插件-参数配置) |
小程序代码:
返回的信息:
- 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;
- that.globalData.appname = system.seotitle
- try {
- swan.setStorageSync('system', system)
- } catch (e) {
- }
- }
- })