1.获取数据
在application\api\controller\下创建文件,如application\api\controller\Wxappsetting.php
设置开头
<?php
namespace app\api\controller;
use app\common\controller\Api;
class Wxappsetting extends Api
//Wxappsetting为创建php的名字
//注意:首字母要大写
{
//如果$noNeedLogin为空表示所有接口都需要登录才能请求
//如果$noNeedRight为空表示所有接口都需要验证权限才能请求
//如果接口已经设置无需登录,那也就无需鉴权了
//
// 无需登录的接口,*表示全部
protected $noNeedLogin = ['*'];
// 无需鉴权的接口,*表示全部
protected $noNeedRight = ['*'];
public function get_appid()
//get_appid随便写
{
//只输出数据表中的appid
$data = model('admin/wxapp/setting')->field('appid')->select();
$this->success('成功',$data);
}
public function get_appname()
{
//只获取数据表中的appname字段
$data = model('admin/wxapp/setting')->field('appname')->select();
$this->success('成功',$data);
}
}
熊猫社区(资源合集)
网课资源|网盘群组
点击链接https://fh.leobba.cn/QX54、
即可加入考研、考公考编、四六级、计算机等级考试、教师编等【免费网课网盘群组】
易和谐资料优先在群组内补发
或者夸克APP内搜索群号:970062162
即可加入考研、考公考编、四六级、计算机等级考试、教师编等【免费网课网盘群组】
易和谐资料优先在群组内补发
或者夸克APP内搜索群号:970062162
© 版权声明
THE END
暂无评论内容