新手入门Nest.js(六)- 控制器Resources、路由通配符
Nest.js控制中的Resources
前面介绍了路由中如何通过GET方式访问路由,Nest.js还支持Post、Delete、Patch、Options、Head和All等
下面看下如何使用Post
import { Controller, Get, Post, Req, Request } from '@nestjs/common';
@Controller('cats')
export class CatsController {
@Get()
findAll(@Req() request: Request): string {
return 'This action will returns all cats';
}
@Post()
create(): string {
return 'This action will create a new cat';
}
}
项目运行起来后,做个简单的测试
$ curl -d '' http://127.0.0.1:3000/cats
This action will create a new cat
可以看到,post请求的时候访问到了create()方法
Route通配符
看个简单的例子
@Get('x*z')
find() {
return 'This action uses a wildcard';
}
然后启动项目做下面几个测试
$ curl http://127.0.0.1:3000/cats/xyz
This action uses a wildcard
$ curl http://127.0.0.1:3000/cats/xyyz
This action uses a wildcard
$ curl http://127.0.0.1:3000/cats/xyyzz
This action uses a wildcard
从上面的输出可以观察到,输出的内容都是一致的,说明访问的路由其实调用了同一个方法
'x*z'
路由将会匹配xyz
,xyyz
,xyyzz
等,?
,+
,*
,()
都可以被用在路由的路径中
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。