0

我正在使用 Swagger 做 Laravel API 的文档,有时除了 POSTMAN 之外还有测试,问题是带参数的 GET 方法不起作用Route::get('/searchProduct/{id}','Api\ReportController@getProductsByID');

但是,如果 GET 方法没有参数,它就可以完美地工作。在 Swagger 中,我意识到,当我进行查询时,我没有输入参数,{id}但我相信之后{id}?id=4

这是我的路线

My route
Route::get('/searchProduct/{id}','Api\ReportController@getProductsByID');

Result in Swagger
www.x.cl/api/searchProduct/{id}?id=4 //ERROR

How it should work
www.x.cl/api/searchProduct/4 

因为在 POSTMAN 中,我只用数字更改我的 ID,搜索对我有用。

这是我的控制器

    /**
     *  @OA\Get(
     *      path="/api/searchProduct/{id}",
     *      summary="Search Product by Status",
     *      description="Lorem ipsun",
     *      security={
     *          {"bearer_token":{}},
     *      },
     *      @OA\Parameter(
     *         name="id",
     *         in="query",
     *         description="Buscar por estado",
     *         required=true,
     *      ),
     *      @OA\Response(
     *          response=200,
     *          description="OK",
     *          @OA\MediaType(
     *              mediaType="application/json",
     *          )
     *      ),
     *      @OA\Response(
     *          response="default",
     *          description="Ha ocurrido un error."
     *      ),
     *      @OA\Response(
     *          response="401",
     *          description="No se ha autenticado, ingrese el token."
     *      ),
     *  )
     */
    public function getProductsByID($uuid){
        $validated = Product::status($uuid);
        return ReportResource::collection($validated);
    }
4

1 回答 1

4

尝试用in="query",这里替换in="path",

     *      @OA\Parameter(
     *         name="id",
     *         in="query",
     *         description="Buscar por estado",
     *         required=true,
     *      ),

Query 是指“查询字符串”,即?URL 中以 & 符号分隔的键/值对的集合。

于 2020-09-29T21:10:57.990 回答