1. Go to this page and download the library: Download zyan/laravel-response-json library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
zyan / laravel-response-json example snippets
namespace App\Http\Controllers;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Routing\Controller as BaseController;
//使用命名空间
use Zyan\JsonResponse\JsonResponse;
class Controller extends BaseController
{
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
use JsonResponse; //use 这个 trait
}
namespace App\Http\Controllers\User;
use App\Http\Controllers\Controller;
class LoginContoller extends Controller
{
public function login(){
//登录成功
if(true){
$user = User::get(1);
return $this->success($user);
}else{ //失败
return $this->error('密码错误');
}
}
public function getUser(){
$user = User::get(1);
return $this->jsonReturn(200,'操作成功',$user);
}
}
public function success($data = []);
//return
{
"code": 1,
"msg": "ok",
"data" : []
}