Skip to content

Commit 1c5e701

Browse files
committed
chore: fix repo links
1 parent b64287b commit 1c5e701

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/docs/basics/controller.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ If user request exceeds the maximum length for parsing that we configured, the f
315315

316316
### Acquiring the Submitted Files
317317

318-
The `body` in the request can carry parameters as well as files. Generally speaking, our browsers always send files in `multipart/form-data`, and we now have two kinds of ways supporting submitting and acquiring files with the help of the framework's plugin [Multipart](https://github.com/eggjs/egg-multipart).
318+
The `body` in the request can carry parameters as well as files. Generally speaking, our browsers always send files in `multipart/form-data`, and we now have two kinds of ways supporting submitting and acquiring files with the help of the framework's plugin [Multipart](https://github.com/eggjs/multipart).
319319

320320
- #### `File` Mode:
321321
If you have no ideas about Nodejs's Stream at all, the `File` mode suits you well:
@@ -589,7 +589,7 @@ module.exports = {
589589

590590
**Notice:`fileExtensions` will be IGNORED when `whitelist` is overwritten.**
591591

592-
For more tech details about this, please refer [Egg-Multipart](https://github.com/eggjs/egg-multipart).
592+
For more tech details about this, please refer [@eggjs/multipart](https://github.com/eggjs/multipart).
593593

594594
### `header`
595595

@@ -685,7 +685,7 @@ module.exports = {
685685

686686
By using Cookie, we can create an individual Session specific to every user to store user identity information, which will be encrypted then stored in Cookie to perform session persistence across requests.
687687

688-
The framework builds in [Session](https://github.com/eggjs/egg-session) plugin, which provides `ctx.session` for us to get or set current user's Session.
688+
The framework builds in [Session](https://github.com/eggjs/session) plugin, which provides `ctx.session` for us to get or set current user's Session.
689689

690690
```js
691691
class PostController extends Controller {

0 commit comments

Comments
 (0)