[Laravel-Swagger]如何在 Laravel 项目中使用 Swagger

时间:2022-09-11 20:34:47

如何在 Laravel 项目中使用 Swagger

http://swagger.io/getting-started/

安装依赖 swagger-php

composer require zircote/swagger-php

创建 SwaggerController,用于为了 swagger-php 提供 json 数据

php artisan make:controller SwaggerController

给 SwaggerController 加上 SwaggerJSON 数据的处理:

SwaggerController.php 

use Illuminate\Http\Request;

use Swagger\Annotations as SWG;

/**
 *
@SWG\Swagger(
 *     schemes={"http","https"},
 *     host="api.host.com",
 *     basePath="/",
 *    
@SWG\Info(
 *         version="1.0.0",
 *         title="This is my website cool API",
 *         description="Api description...",
 *         termsOfService="",
 *        
@SWG\Contact(
 *             email="contact@mysite.com"
 *         ),
 *        
@SWG\License(
 *             name="Private License",
 *             url="URL to the license"
 *         )
 *     ),
 *    
@SWG\ExternalDocumentation(
 *         description="Find out more about my website",
 *         url="http..."
 *     ),

*      // define tag

*     @SWG\Tag(name="Home", description="Roote Route"),
*    
@SWG\Tag(name="User", description="UserController"),
*    
@SWG\Tag(name="Role", description="RoleController"),
*    
@SWG\ExternalDocumentation(
*         description="Find out more about my website",
*         url="http..."
*     ),
*   
@SWG\Definition(
*       definition="errorModel",
*       required={"status code", "message"},
*      
@SWG\Property(
*           property="status code",
*           type="integer",
*           format="int32"
*       ),
*      
@SWG\Property(
*           property="message",
*           type="string"
*       )
*   ),

*    // 定义 API
*  
@SWG\Definition(
*     definition="Login",
*     
@SWG\Property(
*        property="useraccount",
*        type="string"
*      ),
*     
@SWG\Property(
*         property="password",
*         type="string"
*      )
*    ),
*   
@SWG\Definition(
*       definition="logout",
*      
@SWG\Property(
*           property="token",
*           type="string"
*       )
*   ),
* )
 */

class SwaggerController extends Controller

{

public function doc()

{

$swagger = \Swagger\scan(realpath(__DIR__.’/../../’));

return response()->json($swagger);

}

}

具体 UserController.php 中 Swagger Definition

/**
 *
@SWG\Post(
 *     path="/user/login",
 *     summary="Sign in",
 *     tags={"User"},
 *     operationId="Login",
 *     description="Login",
 *     produces={"application/json"},
 *    
@SWG\Parameter(
 *         name="account & password",
 *         in="body",
 *         description="Login",
 *         required=true,
 *        
@SWG\Schema(ref="#/definitions/Login"),
 *     ),
 *    
@SWG\Response(
 *         response=200,
 *         description="It's ok"
 *     ),
 *    
@SWG\Response(
 *         response="default",
 *         description="unexpected error",
 *        
@SWG\Schema(ref="#/definitions/errorModel")
 *     )
 * )
 *
@param Request $request
 *
@return \Illuminate\Http\JsonResponse
 */
public function login( Request $request)
{
    $arr_user_info = [];
    $ret = $this->validateLogInfo($request, $arr_user_info);

if ($ret) {
        return $ret;
    }

$ret = $this->verifyLogInfo($arr_user_info);

if ($ret) {
        return $ret;
    }
}

在 Laravel 中使用 Swagger 出现报错总结:

  1. ErrorException in Logger.php line 38: Required @SWG\Info() not found

方法: use Swagger\Annotations as SWG;

The problem is - you're missing the @SWG\Info block. It's a block which tells swagger some most common information about your API.

I usually put this in a separate controller which is rendering swagger JSON. Here's an example:

还必须在类定义的前面,添加上下面的这段:

  1. Can't read swagger JSON

检查 JSON 接口 URL 时候正确

安装使用参考教程:https://segmentfault.com/a/1190000004980342

[Laravel-Swagger]如何在 Laravel 项目中使用 Swagger的更多相关文章

  1. 如何在spring-boot web项目中启用swagger

    swagger的三个项目及其作用 我们打开swagger的官网,会发现有三个swagger相关的项目,它们分别是 swagger-editor 作用是通过写代码,生成文档描述(一个json文件或其他格 ...

  2. 如何在cocos2d项目中enable ARC

    如何在cocos2d项目中enable ARC 基本思想就是不支持ARC的代码用和支持ARC的分开,通过xcode中设置编译选项,让支持和不支持ARC的代码共存. cocos2d是ios app开发中 ...

  3. 如何在NodeJS项目中优雅的使用ES6

    如何在NodeJS项目中优雅的使用ES6 NodeJs最近的版本都开始支持ES6(ES2015)的新特性了,设置已经支持了async/await这样的更高级的特性.只是在使用的时候需要在node后面加 ...

  4. 如何在VUE项目中添加ESLint

    如何在VUE项目中添加ESLint 1. 首先在项目的根目录下 新建 .eslintrc.js文件,其配置规则可以如下:(自己小整理了一份),所有的代码如下: // https://eslint.or ...

  5. 如何在mvc项目中使用apiController

    文章地址:How do you route from an MVC project to an MVC ApiController in another project? 文章地址:How to Us ...

  6. 如何在Ionic2项目中使用第三方JavaScript库

    onic的官网放出一记大招Ionic and Typings,来介绍如何在Ionic2项目中使用第三方JavaScript库. 因为在前阵子正好想用一个非常有名的第三方JS库ChartJs来实现一些东 ...

  7. 如何在maven项目中使用spring

    今天开始在maven项目下加入spring. 边学习边截图. 在这个过程中我新建了一个hellospring的项目.于是乎从这个项目出发开始研究如何在maven项目中使用spring.鉴于网上的学习资 ...

  8. 如何在Vue-cli项目中使用JTopo

    1.前言 jTopo(Javascript Topology library)是一款完全基于HTML5 Canvas的关系.拓扑图形化界面开发工具包.其体积小,性能优异,由一群开发爱好者来维护.唯一感 ...

  9. 如何在Vue项目中给路由跳转加上进度条

    1.前言 在平常浏览网页时,我们会注意到在有的网站中,当点击页面中的链接进行路由跳转时,页面顶部会有一个进度条,用来标示页面跳转的进度(如下图所示).虽然实际用处不大,但是对用户来说,有个进度条会大大 ...

随机推荐

  1. [CareerCup] 15.2 Renting Apartment II 租房之二

    Write a SQL query to get a list of all buildings and the number of open requests (Requests in which ...

  2. 百度分享不支持https的解决方案

    站点自从开启 https 之后 ,百度分享就不能用了!但是又寻找不到类似百度分享的替代品.. 怎么办呢?要如何解决 百度分享不支持https的问题呢, 跟着博主动动手,让你百度分享仍然能在https下 ...

  3. scons构建自己的一个简单的程序

    我在我的D盘下,新建一个文件夹,命名为try.在这个文件夹下新建两个文件,一个文件是test.c .里面的程序很简单: #include<stdio.h>#include<stdli ...

  4. python socket 编程之二:tcp三次握手

    建立起一个TCP连接需要经过“三次握手”:第一次握手:客户端发送syn包(syn=j)到服务器,并进入SYN_SEND状态,等待服务器确认:第二次握手:服务器收到syn包,必须确认客户的SYN(ack ...

  5. http协议、web服务器、并发服务器(下)

    Web静态服务器-5-非堵塞模式 单进程非堵塞模型 import socket import time def main(): tcp_socket_server = socket.socket(so ...

  6. DataFrame基本操作

    这些操作在网上都可以百度得到,为了便于记忆自己再根据理解总结在一起.---------励志做一个优雅的网上搬运工 1.建立dataframe (1)Dict to Dataframe df = pd. ...

  7. 2&period;初步认识Angular2

    简述:一个完整的Angular应用主要由六个重要部分构成,分别是:组件,模板,指令,服务,依赖注入,和路由.这些组成部分各司其职,而又紧密协作. 其中,与用户直接打交互的是模板视图,它是构成组件的要素 ...

  8. 关于cmp函数参数中的&符号

    关于cmp函数参数中的&符号 关于sort函数中的cmp函数有着不同的写法,以刚刚的整形元素比较为例 还有人是这么写的: bool cmp(const int &a, const in ...

  9. undefined symbol&colon; ap&lowbar;log&lowbar;rerror;apache2&period;4与weblogic点so文件

    没法子啊:只能用 httpd-2.2.26 ============================== https://www.google.com.hk/#newwindow=1&q=un ...

  10. Python中网络编程对socket accept函数的理解

    在服务器端,socket()返回的套接字用于监听(listen)和接受(accept),这个套接字不能用于与客户端之间发送和接收数据. accept()接受一个客户端的连接请求,并返回一个新的套接字, ...