最全面的菠菜源码下载,支持修复,二次开发皇冠体育赛事
程序员文章站
2022-05-07 19:09:01
最全面的菠菜源码下载: fanshubbs.com前端提交学生学号(sno)给Api Api接口返回此学生的基本信息 API接口端 这个实例实现这样一个功能参照: boluomibbs.com ......
最全面的菠菜源码下载:
前端提交学生学号(sno)给Api Api接口返回此学生的基本信息
API接口端
<?php namespace app\index\controller; use think\Controller; use app\index\model\Student; class User { public function index() { return $this->fetch(); } // 客户端提交学生学号(sno)给api api返回此学生的基本信息 public function api($sno='0001') { // 查询 并把数据赋值给 $data $data = Student::getBysno($sno); // 返回数据 return json($data); } }
这个实例实现这样一个功能参照:
上一篇: 解决粘包问题