Skip to content

Commit 93d8b21

Browse files
committed
增加快捷方法
1 parent e2c9dd5 commit 93d8b21

File tree

8 files changed

+111
-3
lines changed

8 files changed

+111
-3
lines changed

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
namespace app\controller;
2121

2222
use think\annotation\Inject;
23+
use think\annotation\route\Get;
2324
use think\annotation\route\Group;
2425
use think\annotation\route\Middleware;
2526
use think\annotation\route\Resource;
@@ -41,12 +42,17 @@ class IndexController
4142
//...
4243
}
4344

44-
#[Route('xx')]
45+
#[Route('GET','xx')]
4546
public function xx()
4647
{
4748
//...
4849
}
49-
50+
51+
#[Get('cc')]
52+
public function cc()
53+
{
54+
//...
55+
}
5056
}
5157

5258
~~~

src/route/Delete.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace think\annotation\route;
4+
5+
use Attribute;
6+
7+
#[Attribute(Attribute::TARGET_METHOD)]
8+
class Delete extends Route
9+
{
10+
public function __construct(
11+
public string $rule,
12+
public array $options = []
13+
)
14+
{
15+
parent::__construct('DELETE', $rule, $options);
16+
}
17+
}

src/route/Get.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace think\annotation\route;
4+
5+
use Attribute;
6+
7+
#[Attribute(Attribute::TARGET_METHOD)]
8+
class Get extends Route
9+
{
10+
public function __construct(
11+
public string $rule,
12+
public array $options = []
13+
)
14+
{
15+
parent::__construct('GET', $rule, $options);
16+
}
17+
}

src/route/Options.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace think\annotation\route;
4+
5+
use Attribute;
6+
7+
#[Attribute(Attribute::TARGET_METHOD)]
8+
class Options extends Route
9+
{
10+
public function __construct(
11+
public string $rule,
12+
public array $options = []
13+
)
14+
{
15+
parent::__construct('OPTIONS', $rule, $options);
16+
}
17+
}

src/route/Patch.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace think\annotation\route;
4+
5+
use Attribute;
6+
7+
#[Attribute(Attribute::TARGET_METHOD)]
8+
class Patch extends Route
9+
{
10+
public function __construct(
11+
public string $rule,
12+
public array $options = []
13+
)
14+
{
15+
parent::__construct('PATCH', $rule, $options);
16+
}
17+
}

src/route/Post.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace think\annotation\route;
4+
5+
use Attribute;
6+
7+
#[Attribute(Attribute::TARGET_METHOD)]
8+
class Post extends Route
9+
{
10+
public function __construct(
11+
public string $rule,
12+
public array $options = []
13+
)
14+
{
15+
parent::__construct('POST', $rule, $options);
16+
}
17+
}

src/route/Put.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace think\annotation\route;
4+
5+
use Attribute;
6+
7+
#[Attribute(Attribute::TARGET_METHOD)]
8+
class Put extends Route
9+
{
10+
public function __construct(
11+
public string $rule,
12+
public array $options = []
13+
)
14+
{
15+
parent::__construct('PUT', $rule, $options);
16+
}
17+
}

src/route/Route.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use JetBrains\PhpStorm\ExpectedValues;
77

88
#[Attribute(Attribute::TARGET_METHOD)]
9-
final class Route
9+
class Route
1010
{
1111
public function __construct(
1212
#[ExpectedValues(['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'OPTIONS', 'HEAD', '*'])]

0 commit comments

Comments
 (0)