Commit 1f41e208 by 刘剑华

update model

parent cb852713
...@@ -15,13 +15,13 @@ use app\api\controller\UnauthorizedException; ...@@ -15,13 +15,13 @@ use app\api\controller\UnauthorizedException;
* 在具体资源方法中,不需要再依赖注入,直接调用$this->request返回为请具体信息的一个对象 * 在具体资源方法中,不需要再依赖注入,直接调用$this->request返回为请具体信息的一个对象
* date:2017-07-25 * date:2017-07-25
*/ */
class User extends Api class User extends Controller
{ {
use Send;
/** /**
* 允许访问的方式列表,资源数组如果没有对应的方式列表,请不要把该方法写上,如user这个资源,客户端没有delete操作 * 允许访问的方式列表,资源数组如果没有对应的方式列表,请不要把该方法写上,如user这个资源,客户端没有delete操作
*/ */
public $restMethodList = 'get|post|put|'; public $restMethodList = 'get|post|put|';
/** /**
* restful没有任何参数 * restful没有任何参数
* *
...@@ -40,6 +40,7 @@ class User extends Api ...@@ -40,6 +40,7 @@ class User extends Api
*/ */
public function save() public function save()
{ {
// var_dump($_POST);die;
if(empty($_POST['json'])){ if(empty($_POST['json'])){
$this->returnmsg(400); $this->returnmsg(400);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment