Commit a35ed375 authored by 王源's avatar 王源 🎧

编写鉴权注解文档

parent 729b0ce7
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
"repositories": { "repositories": {
"meibuyu/micro": { "meibuyu/micro": {
"type": "path", "type": "path",
"url": "d:/workspace/biubiubiu",//本库的具体地址,随意找个地方git clone下来 "url": "path/to/micro",//本库的具体地址,随意找个地方git clone下来
"options": { "options": {
"symlink": true "symlink": true
} }
...@@ -18,3 +18,45 @@ ...@@ -18,3 +18,45 @@
``` ```
composer require meibuyu/micro @dev composer require meibuyu/micro @dev
``` ```
---
### 2、鉴权注解使用方法
> 使用时必须接入用户服务
> 权限名会拼接env文件中的APP_NAME属性,请注意唯一性
> 所有权限必须存在于用户服务的权限表中,若不存在,请联系管理员添加权限
##### 1、@AutoPerm
在控制器头部添加@AutoPerm注解,为该控制器下所有的方法添加鉴权功能,生成的权限名为`小写控制名_方法名`
```
/**
* @AutoPerm()
*/
class UserController {}
```
参数:
> 1. prefix, 前缀(字符串),默认为小写控制器名(user)
> 2. exclude, 要排除的方法名(字符串数组),默认为空
```
/**
* @AutoPerm(prefix="user", exclude={"index"})
*/
class UserController {}
```
##### 2、@Perm
在控制器中的方法头部添加@Perm注解,为当前方法添加鉴权功能,生成权限名为`小写控制名_方法名`
```
/**
* @Perm()
*/
function get_user {}
```
参数:
> name, 前缀(字符串),默认为小写控制器名拼接方法名(user),如果填写指定的名称,会覆盖@AutoPerm的prefix和exclude
```
/**
* @Perm("get_user")
*/
function get_user {}
```
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