🦄 2024 独立开发者训练营,一起创业!查看介绍 / 立即报名(剩余10个优惠名额) →

NinghaoNodeCamp 2019:英文单词(按出现频次排列)

在这次训练营中,出现了 5000+ 次英文单词,去掉重复以后还剩几百个,很多单词在不同的语境下表示不同的含义。单词的大小写不同,或者撰写的形式不同,可能表示不同的东西。

比如 post 这个词,如果是 POST 指的是 HTTP 协议里的一种请求方法,如果是 @Post,指的是框架里的一个装饰器,如果是 Post 指的是我们自定义的一种内容实体,表示文章,posts 表示一组文章,posts 也经常出现在内容的地址里,比如 /posts,或 /posts/3。

单词后面的数字,表示这个单词在所有训练中出现的次数。比如 id 294,说明这个词出现了 294 次。

  1. id 294:标识,经常指数据条目的那个 ID 号,或者源代码管理做的提交的 ID 号
  2. Post 210:全部大写时,表示 HTTP 协议用的一种请求方法。Post 也是应用中的一种内容资源,如果前面带 @ 符号,表示的是 Nest 框架里的 @Post 装饰器
  3. user 203:用户
  4. HTTP 120:一种数据传输协议的名字
  5. Data 115:数据
  6. Nest 96:Nest.js 应用框架
  7. posts 93:一组文章或出现在文章资源的地址中
  8. return 82:返回
  9. await 71:等待异步动作的执行
  10. store 62:存储
  11. string 62:字符串
  12. name 59:名字
  13. JWT 54:一种验证用户身份的方法
  14. tag 51:标签,是一种对内容进行分类的方法
  15. password 47:密码
  16. Token 44:令牌,一段加密的字符串
  17. index 42:经常作为返回内容列表的方法的名字
  18. comment 42:内容评论
  19. tags 41:一组标签或出现在标签资源的地址中
  20. number 38:数字,表示某个数据的类型是数字
  21. role / roles 67:用户的角色,复数时经常表示的是定义的一种内容的关系的名字
  22. GET 35:全部大写,指 HTTP 塄用的一种请求资源的方法
  23. generate 34:生成,经常出现在生成应用组件的命令中
  24. title 33:标题
  25. Category 33:内容分类
  26. entity 32:实体,就是应用里存在的一些东西,比如内容、评论、用户、分类,都可以看作实体
  27. Update 31:更新或升级
  28. readonly 31:只读
  29. repository 30:指代码仓库,或是 TypeOrm 里的一种处理数据用的东西
  30. file 29:文件
  31. true 28:真,布尔值
  32. auth 28:authentication,验证身份
  33. Modules 27:模块
  34. PostService 27:自定义的一个服务的名字,用来处理内容数据
  35. private 26:私有
  36. @Param 25:地址参数装饰器,可用它装饰方法参数,获取到请求地址里的参数
  37. body 25:指请求里带的主体数据
  38. PostController 24:自定义的一个控制器的名字,用来处理对内容(Post)资源的请求
  39. UserService 24:自定义的处理用户资源的一个服务
  40. master 23:源代码管理中项目的一个分支的名字,通常叫主分支
  41. JSON 22:一种数据的表示格式,经常用在网络传输中,客户端请求数据,服务端返回的数据的数据通常使用的是 JSON 这种格式
  42. async 22:标记方法 / 函数,表示方法里可能包含一种异步动作,在方法里如果等待异步动作返回的结果,可以在动作的前面使用 await
  43. QueryBuilder 22:查询构建器,TypeOrm 里用来处理数据用的东西
  44. limit 20:限制,经常指的是在查询数据时用的一个方法,用来限制查询返回的结果数量
  45. order 19:排序:经常指的是在查询数据时用的一个方法,用来对数据按指定条件进行排序
  46. constructor 19:构造方法,出现在 Class(类)的定义中,在基于类创建对象时会执行这个方法。经常在这个方法里注入类里面依赖的一些东西
  47. false 19:假,布尔值
  48. alias 19:别名,它是应用里定义的一些资源包含的一个字段的名字
  49. categories 19:分类,指的是内容的分类、分类资源、或者定义的分类内容关系
  50. request 18:请求
  51. origin 18:对项目做源代码管理时,为项目添加的一个远程仓库的名字
  52. vote 18:投票,用在内容资源上的一个投票功能
  53. @Body 17:指 Nest.js 里的 @Body 装饰器,用它装饰的参数里面会包含请求中带的主体数据
  54. demo 17:演示,介绍核心组件与概念的时候经常用它作为各种组件的名字的一部分
  55. DemoService 17:自定义的演示服务,演示应用里的 “服务” 的作用
  56. sort 17:排序,经常指的是一个用在查询数据时的方法的名字
  57. Module 16:模块,Nest.js 应用架构的一个组成部分,可以把相关的东西放在一个模块里
  58. show 16:经常用作返回单个内容资源用的方法的名字
  59. export 16:导出,导出模块里定义的东西,这样在其它地方引入这个模块的时候就可以使用模块导出的东西
  60. posts.controller 16:定义的一个控制器的文件名字
  61. TypeORM 16:Nest.js 框架里用来处理数据用的一个模块
  62. payload 16:使用 JWT 经验用户身份,在签发的 Token 里包含的数据
  63. ParseIntPipe 16:在 Nest.js 框架把数据转换成数字类型值用的一个东西
  64. options 16:选项
  65. enum 16:TypeScript 里的东西,在我们的应用里,定义了几个 enum,用作某几种数据的类型
  66. class 15:类
  67. type 15:类型
  68. AuthGuard 15:Nest.js 框架里用来验证用户身份用的东西
  69. liked 15:自定义的一个内容关系的名字,指用户投票或喜欢的东西
  70. Permissions 15:权限
  71. npm 14:是 Node.js 用的一个包管理工具的名字,yarn 可以代替 npm
  72. response 14:响应,客户端请求,服务端就要做出对应的响应
  73. throw 14:抛,在代码里 throw 一个异常,表示哪里出了问题,应用可以根据异常做出相应的动作
  74. validate 14:验证
  75. userId 14:用户 ID 号,指用户的唯一标识
  76. resource 14:资源
  77. TypeOrmModule 13:Nest.js 框架里带的一个模块的名字
  78. delete 13:删除
  79. controller 12:控制器
  80. @Get 12:Nest.js 框架里定义支持用 GET 方法请求的路由用的一个装饰器
  81. .env 12:存放环境变量的文件名字
  82. Hash 12:一种处理数据用的算法的名字,比如为了案例,用它处理用户的密码,就是 Hash 一下用户的密码,然后存储 Hash 之后的密码
  83. src 11:Nest.js 框架里存储主要代码文件的目录的名字,src 表示 source,就是内容源
  84. :id 11:前面有冒号,:id 表示的是路由地址里的 id 参数
  85. Service 11:服务,比如定义一个 “用户” 服务,提供处理用户数据用的一些功能
  86. secret 11:指的是一串密码(随机的不可预测的一串文字)
  87. @Column 11:Nest.js 框架里用来定义实体数据字段(栏)用的装饰器
  88. findOne 11:用在查询数据时的一个方法的名字
  89. UserController 11:自定义的用户控制器
  90. login 11:登录
  91. AuthModule 11:自定义的验证用户身份用的模块
  92. page 11:页面 / 页码
  93. PostsController 10:自定义的内容控制器
  94. Bearer 10:持票人
  95. @Post 10:Nest.js 框架里用来定义支持 POST 请求的路由用的装饰器
  96. core 10:核心
  97. req 10:request,请求,经常作为方法的参数名,表示请求
  98. demoRoles 10:自定义的演示用的东西
  99. this.postRepository 10:在类里注入的一个依赖,用它可以处理内容(Post)相关的数据
  100. destroy 10:销毁,作为删除内容资源用的方法的名字
  101. this.userRepository 10:在类里注入的一个依赖,用它可以处理用户(User)相关的数据
  102. comments 10:评论
  103. take 10:查询数据时用一个方法的名字,用它设置需要返回的内容数量
  104. Root 9:根,经常指 Nest.js 应用的 Root 模块,也就是 AppModule
  105. DTO 9:Data Transfer Object,数据传输对象
  106. Exception 9:异常
  107. app 9:应用
  108. canActivate 9:方法的名字
  109. Interceptor 9:拦截器
  110. map 9:方法名
  111. @Entity 9:实体装饰器
  112. save 9:保存
  113. findByName 9:自定义方法名
  114. voted 9:表示用户投过票或喜欢的内容
  115. ListOptions 9:列表选项
  116. skip 9:分页查询内容时用的一个方法
  117. AccessGuard 9:自定义检查用户权限用的守卫
  118. @Controller 8:装饰控制器类用的装饰器
  119. query 8:查询
  120. interface 8:接口
  121. member 8:会员
  122. hasRole 8:自定义方法名
  123. created 8:表示内容创建时间
  124. updated 8:表示内容更新时间
  125. @InjectRepository 8:在类里注入 Repository 依赖时用的装饰器
  126. PUT 8:指 HTTP 协议用的一种请求方法
  127. PostDto 8:自定义类的名字
  128. UserDto 8:自定义类的名字
  129. AuthService 8:自定义提供身份验证功能的服务
  130. where 8:在 ... 情况下,用在查询数据时的一个方法
  131. vip 8:自定义的用户角色名字
  132. possess 8:自定义方法名,检查用户是否拥有指定资源
  133. run 7
  134. Hello 7
  135. @nestjs/common 7
  136. filter 7:过滤器
  137. authorization 7:
  138. install 7:安装
  139. providers 7
  140. create 7:创建
  141. imports 7
  142. HttpException 7:Nest.js 框架中的一种异常的名字
  143. Reflector 7
  144. handle 7:方法名
  145. @UseInterceptors 7
  146. T 7
  147. @User 7:自定义装饰器,用来获取请求中的用户
  148. forFeature 7:配置模块用的一个方法的名字
  149. NULL 7
  150. Package 7,包,指 Node.js 项目中使用的功能模块
  151. UserModule 7:自定义用户模块
  152. JwtStrategy 7:一种验证用户身份用的策略,策略指的是 Passport.js 里验证用户身份的方法
  153. done 7:一个回调方法的名字
  154. else 7:不然的话
  155. resourceId 7:资源的 ID 号
  156. Possession 7
  157. FileService 7:自定义处理文字资源用的一个服务
  158. nestjs 6:Nest.js 应用框架
  159. message 6:信息,经常出现在异常响应的数据里,说明是哪里出了问题
  160. Guard 6:守卫
  161. intercept 6:方法名
  162. metadata 6
  163. undefined 6:未定义
  164. mysql 6:一种关系类型的数据库管理系统
  165. entities 6:实体,用在变量名,表示一组实体
  166. Column 6
  167. @PrimaryGeneratedColumn 6
  168. result 6:结果
  169. Partial 6:设置部分类型(TypeScript)
  170. users 6:用户,用在变量名,表示一组用户
  171. bcrypt 6:用作 Hash 用户密码用的一个包
  172. ClassSerializerInterceptor 6
  173. Strategy 6:策略,Passport.js 里用的验证用户身份的方法
  174. relations 6:关系
  175. @ManyToMany 6:定义多对多内容关系用的装饰器
  176. postId 6:Post 资源的 ID 号,出现在数据表中的字段的名字
  177. createQueryBuilder 6
  178. unVote 6
  179. method 6:方法
  180. taxonomy 6:分类法
  181. landscape 6
  182. emotion 6:情感
  183. ListOptionsInterface 6
  184. CommentService 6:自定义处理评论数据用的服务
  185. Permission 6:权限
  186. validatePermissions 6
  187. mimetype 6
  188. localhost:3000 5
  189. start:dev 5:运行项目开发服务用的命令
  190. Controllers 5:控制器
  191. @Query 5:Nest.js 框架里带的装饰器,用它装饰的方法参数值里包含了请求地址查询符的值
  192. date 5
  193. host 5:主体
  194. Object 5:对象
  195. express 5:指 express 这个 Node.js 模块(包)
  196. add 5:方法名
  197. @module 5
  198. res 5:response,表示响应,用作方法的参数名
  199. status 5:状态,经常指响应的状态码
  200. context 5
  201. SetMetadata 5
  202. logging 5
  203. Observable 5
  204. next.handle 5
  205. pipe 5:管道
  206. createParamDecorator 5
  207. value 5:值
  208. DemoPipe 5
  209. find 5
  210. @Put 5:Nest.js 框架里带的装饰器,定义支持 HTTP 协议 PUT 方法请求的路由
  211. nullable 5
  212. this.userService 5
  213. AuthController 5:自定义用于身份验证的控制器
  214. PassportModule 5:Nest.js 框架里的一个模块,集成了 Passport.js
  215. auth/test 5:自定义测试身份验证用的地址
  216. relation 5:关系,自定义项目分支名,也是设置内容关系用的一个方法的名字
  217. UserEntity 5
  218. ManyToMany 5
  219. seed 5
  220. leftJoinAndSelect 5
  221. TagDto 5:自定义类的名字
  222. CommentDto 5:自定义类的名字
  223. boolean 5:布尔值
  224. access 5
  225. UserRole 5:自定义 enum 的名字
  226. RoleService 5:处理用户角色数据用的服务
  227. meta 5
  228. hasPossession 5
  229. Multer 5:处理文件上传用的一个 Package 的名字
  230. uploads 5
  231. new 4
  232. .gitignore 4:文件名,文件里列出在源代码管理中要忽略掉的文件与目录
  233. Node 4:指 Node.js,应用引擎
  234. TypeScript 4:一种语言,扩展了 JavaScript 语言的功能
  235. @Req 4:Nest.js 框架里的装饰器,用它装饰的东西可以得到请求数据
  236. @Headers 4:Nest.js 框架里的装饰器,用它装饰的东西可以得到请求里的头部信息
  237. headers 4:表示请求里带的头部信息
  238. Header 4:请求头部
  239. @Injectable 4
  240. this.demoService 4
  241. next 4
  242. statusCode 4
  243. ForbiddenException 4
  244. path 4
  245. DemoFilter 4
  246. getHandler 4
  247. @SetMetadata 4
  248. getRequest 4
  249. some 4
  250. transform 4
  251. TransformInterceptor 4
  252. const 4
  253. metatype 4
  254. Nest.js 4
  255. SQL 4
  256. Git 4
  257. postRepository 4
  258. this.postService 4
  259. @Delete 4
  260. unique 4
  261. BadRequestException 4
  262. @Exclude 4
  263. newPassword 4
  264. Passport.js 4
  265. auth/login 4
  266. @nestjs/jwt 4
  267. register 4
  268. @nestjs/passport 4
  269. passport 4
  270. @UseGuards 4
  271. of 4
  272. Size 4
  273. TagService 4
  274. post_tags_tag 4
  275. this.commentRepository 4
  276. showPostComments 4
  277. orderBy 4
  278. pagination 4
  279. total 4
  280. DESC 4
  281. control 4
  282. RoleDto 4
  283. user_roles_role 4
  284. FileModule 4
  285. FileController 4
  286. filename 4
  287. callback 4
  288. ts 3
  289. Transfer 3
  290. post.dto.ts 3
  291. CreatePostDto 3
  292. @nestjs/platform 3
  293. core/middlewares 3
  294. NestMiddleware 3
  295. use 3
  296. command 3
  297. findAll 3
  298. app.module 3
  299. consumer 3
  300. catch 3
  301. ArgumentsHost 3
  302. getClass 3
  303. decorator 3
  304. core/interceptors 3
  305. rxjs/operators 3
  306. @nestjs/typeorm 3
  307. database 3
  308. /src/modules/post 3
  309. Key 3
  310. longtext 3
  311. post.service 3
  312. userRepository 3
  313. wanghao 3
  314. as 3
  315. hashPassword 3
  316. this.password 3
  317. transformer 3
  318. UpdatePasswordDto 3
  319. updatePassword 3
  320. LoginDto 3
  321. UnauthorizedException 3
  322. JwtModule 3
  323. signToken 3
  324. JwtPayload 3
  325. jwtService 3
  326. OneToMany 3
  327. @ManyToOne 3:定义多对一内容关系用的装饰器
  328. @JoinTable 3:添加内容关系需要的中间表用的装饰器
  329. user_voted_post 3
  330. TablePlus 3:一款数据库客户端软件
  331. CategoryDto 3
  332. categoryService 3
  333. @OneToMany 3
  334. categoryId 3
  335. :categories 3:有冒号前缀,表示地址中的分类参数
  336. getMany 3
  337. @ListOptions 3
  338. tagRepository 3
  339. beforeTag 3
  340. item 3
  341. tagId 3
  342. Promise.all 3
  343. this.commentService 3
  344. showUserComments 3
  345. parseInt 3
  346. if 3
  347. ASC 3
  348. forwardRef 3
  349. PermissionInterface 3
  350. @Permissions 3
  351. results 3
  352. OWN 3
  353. originalname 3
  354. dest 3
  355. fileFilter 3
  356. allowed 3
  357. FileDto 3
  358. fileRepository 3
  359. serve 3
  360. @nestjs/cli 2
  361. node_modules 2
  362. posts.controller.spec.ts 2
  363. posts.controller.ts 2
  364. app.module.ts 2
  365. http://localhost:3000/posts 2
  366. IP 2
  367. params 2
  368. push 2
  369. package.json 2
  370. resolve 2
  371. Provider 2
  372. demo.service 2
  373. console.log 2
  374. NestModule 2
  375. DemoMiddleware 2
  376. FORBIDDEN 2
  377. error 2
  378. Web 2
  379. ctx 2
  380. getResponse 2
  381. main.ts 2
  382. demoAuth 2
  383. core/guards 2
  384. provide 2
  385. useClass 2
  386. DemoRolesGuard 2
  387. Execution 2
  388. handler 2
  389. context.getClass 2
  390. Reflection 2
  391. this.reflector 2
  392. context.getHandler 2
  393. guest 2
  394. context.switchToHttp 2
  395. user.roles 2
  396. core/decorators 2
  397. Interceptors 2
  398. NestInterceptor 2
  399. ExecutionContext 2
  400. switchToHttp 2
  401. CallHandler 2
  402. rxjs 2
  403. LoggingInterceptor 2
  404. now 2
  405. Date.now 2
  406. before 2
  407. tap 2
  408. after 2
  409. errors 2
  410. request.user 2
  411. user.decorator.ts 2
  412. param 2
  413. custom 2
  414. posts/3 2
  415. forRoot 2
  416. .entity.ts 2
  417. post.entity.ts 2
  418. Primary 2
  419. VARCHAR 2
  420. @UpdateDateColumn 2
  421. Docker 2
  422. .env.example 2
  423. post.controller 2
  424. from 2
  425. NotFoundException 2
  426. users/ 2
  427. comparePassword 2
  428. users/id/password 2
  429. userService: 2
  430. localhost:3000/auth/login 2
  431. secretOrPrivateKey 2
  432. @types/passport 2
  433. jwt.strategy.ts 2
  434. PassportStrategy 2
  435. secretOrKey 2
  436. VerifiedCallback 2
  437. authTest 2
  438. ok 2
  439. settings 2
  440. localhost:3000/posts 2
  441. ManyToOne 2
  442. :id/vote 2
  443. Builder 2
  444. remove 2
  445. :id/liked 2
  446. mac 2
  447. Truncate 2
  448. this.categoryRepository 2
  449. decorators 2
  450. list 2
  451. split 2
  452. IN 2
  453. this.tagRepository.save 2
  454. _tags 2
  455. _tag 2
  456. this.tagRepository 2
  457. Promise 2
  458. andWhere 2
  459. CommentRepository 2
  460. storePostComment 2
  461. CommentController 2
  462. posts/:id/comments 2
  463. localhost:3000/posts/ 2
  464. select 2
  465. comments/:id 2
  466. posts/3/comments 2
  467. addSelect 2
  468. data.limit 2
  469. getManyAndCount 2
  470. Count 2
  471. enums 2
  472. RoleController 2
  473. user.id 2
  474. Possession.OWN 2
  475. upload 2
  476. FileInterceptor 2
  477. fieldname 2
  478. encoding 2
  479. MulterModule 2
  480. destination 2
  481. mimetypes 2
  482. this.fileService 2
  483. sendFile 2
  484. global 1
  485. yarn 1
  486. start 1
  487. World 1
  488. VS 1
  489. Code 1
  490. Yes 1
  491. .DS_Store 1
  492. branch 1
  493. github 1
  494. info 1
  495. co 1
  496. dry 1
  497. src/posts 1
  498. help 1
  499. Routes 1
  500. Insomnia 1
  501. Tab 1
  502. HTTPS 1
  503. request.ip 1
  504. request.hostname 1
  505. request.method 1
  506. popular 1
  507. agent 1
  508. latest 1
  509. force 1
  510. Services 1
  511. posts/providers 1
  512. posts/providers/demo 1
  513. demo.service.ts 1
  514. posts/interfaces 1
  515. this.posts 1
  516. @modules 1
  517. PostsModule 1
  518. Middlewares 1
  519. middleware 1
  520. implements 1
  521. configure 1
  522. MiddlewareConsumer 1
  523. apply 1
  524. forRoutes 1
  525. Exceptions 1
  526. layer 1
  527. HttpStatus 1
  528. core/filters 1
  529. @Catch 1
  530. ExceptionFilter 1
  531. ArgumentHost 1
  532. Sockets 1
  533. client 1
  534. ctx.getRequest 1
  535. getStatus 1
  536. url 1
  537. @UseFilters 1
  538. UserFilters 1
  539. bootstrap 1
  540. useGlobalFilters 1
  541. APP_GUARD 1
  542. req.user 1
  543. roles.includes 1
  544. @Roles 1
  545. @Injecttable 1
  546. ArgumentsHosts 1
  547. JavaScript 1
  548. UseGlobalInterceptors 1
  549. APP_INTERCEPTOR 1
  550. ms 1
  551. UseInterceptor 1
  552. core/interceptor 1
  553. catchError 1
  554. throwError 1
  555. BadGatewayException 1
  556. ErrorsInterceptor 1
  557. Bad 1
  558. Gateway 1
  559. BadGateway 1
  560. core/pipes 1
  561. PipeTransform 1
  562. ArgumentMetadata 1
  563. Array 1
  564. localhost 1
  565. port 1
  566. username 1
  567. synchronize 1
  568. __dirname 1
  569. AppModule 1
  570. Sequel Pro 1
  571. Structure 1
  572. INT 1
  573. auto_increment 1
  574. @CreateDateColumn 1
  575. DATETIME 1
  576. CURRENT_TIMESTAMP 1
  577. Compose 1
  578. to 1
  579. uppercase 1
  580. TYPEORM_ 1
  581. TYPEORM_TYPE 1
  582. TYPEORM_CONNECTION 1
  583. TYPEORM_ENTITIES 1
  584. entity.ts 1
  585. TYPEORM_LOGGING 1
  586. rm 1
  587. InjectRepository 1
  588. nestjs/common 1
  589. this.postService.show 1
  590. this.postService.update 1
  591. posts/ 1
  592. user.entity.ts 1
  593. user.dto.ts 1
  594. localhost:3000/users 1
  595. user.entity 1
  596. Listeners 1
  597. @types/bcrypt 1
  598. import 1
  599. @BeforeInsert 1
  600. rounds 1
  601. Exclude 1
  602. user.dto 1
  603. compare 1
  604. @BeforeUpdate 1
  605. pass 1
  606. entity.comparePassword 1
  607. :id/password 1
  608. this.userService.updatePassword 1
  609. modules/auth 1
  610. can 1
  611. dependencies 1
  612. exports 1
  613. auth.dto.ts 1
  614. this.authService.login 1
  615. signOptions 1
  616. expiresIn 1
  617. jwtService.sign 1
  618. auth.interface.ts 1
  619. this.jwtService 1
  620. sign 1
  621. this.signToken 1
  622. oAuth 1
  623. Types 1
  624. defaultStrategy 1
  625. strategies 1
  626. super 1
  627. jwtFromRequest 1
  628. ExtractJwt.fromAuthHeaderAsBearerToken 1
  629. test 1
  630. UseGuard 1
  631. iat 1
  632. exp 1
  633. this.userService.findByName 1
  634. src/core/decorators 1
  635. VSCode 1
  636. todo 1
  637. highlight 1
  638. todohighlight 1
  639. Open 1
  640. todohighlight.defaultStyle 1
  641. color 1
  642. post.user 1
  643. localhost:3000/users/1 1
  644. typeof 1
  645. posts/id/vote 1
  646. postService.vote 1
  647. posts/2/vote 1
  648. this.postService.unVote 1
  649. users/id/liked 1
  650. voted.user 1
  651. loadMany 1
  652. cannot 1
  653. read 1
  654. property 1
  655. tableName 1
  656. windows 1
  657. connection 1
  658. Local 1
  659. Row 1
  660. Height 1
  661. Font 1
  662. https://github.com/ninghao/ninghao 1
  663. index.js 1
  664. poem 1
  665. Disable 1
  666. foreign 1
  667. check 1
  668. remotes/origin/nestjs 1
  669. category.dto.ts 1
  670. category.entity.ts 1
  671. categoryRepository 1
  672. this.categoryService 1
  673. localhost:3000/categories 1
  674. queryBuilder.leftJoinAndSelect 1
  675. category.alias 1
  676. core/interfaces 1
  677. core/interfaces/list 1
  678. tag.dto.ts 1
  679. tag.entity.ts 1
  680. definition 1
  681. TagModule 1
  682. this.tagRepository.update 1
  683. this.tagRepository.delete 1
  684. TagController 1
  685. tagService: 1
  686. this.tagService.store 1
  687. this.tagService.update 1
  688. this.tagService.destroy 1
  689. localhost:3000/tags 1
  690. foreFeature 1
  691. this.beforeTag 1
  692. this.postRepository.save 1
  693. :...tags 1
  694. src/modules/comment 1
  695. comment.dto.ts 1
  696. comment.entity.ts 1
  697. @CreatedDateColumn 1
  698. this.commentService.storePostComment 1
  699. select: 1
  700. jwt.strategy 1
  701. this.commentService.update 1
  702. localhost:3000/comments/3 1
  703. localhost:3000/comments/ 1
  704. comment.post 1
  705. users/:id/comments 1
  706. posts/11 1
  707. user.name 1
  708. :name 1
  709. user.password 1
  710. getOne 1
  711. findAndCount 1
  712. toUpperCase 1
  713. data.sort 1
  714. data.order 1
  715. RoleModule 1
  716. role.dto.ts 1
  717. role.enum.ts 1
  718. role.entity.ts 1
  719. roleRepository 1
  720. this.roleRepository.save 1
  721. this.roleService.store 1
  722. localhost:3000/roles 1
  723. this.userRepository.findOne 1
  724. this.userRepository.save 1
  725. this.userService.update 1
  726. localhost:3000/users/ 1
  727. UseGuards 1
  728. permissions.decorator.ts 1
  729. interfaces 1
  730. permission.interface.ts 1
  731. user.controller 1
  732. UserRole. 1
  733. this.validatePermissions 1
  734. results.includes 1
  735. user.roles.some 1
  736. userRole.name 1
  737. leftJoin 1
  738. :resourceId 1
  739. getCount 1
  740. :id/possess/:resource/:resourceId 1
  741. this.userService.possess 1
  742. possession.enum.ts 1
  743. resource.enum.ts 1
  744. Resource.POST 1
  745. request.params.id 1
  746. posts/15 1
  747. UserRole.VIP 1
  748. roleId 1
  749. @UploadedFile 1
  750. http://localhost:30000/files 1
  751. Multipart 1
  752. Form 1
  753. files 1
  754. buffer 1
  755. ./uploads 1
  756. image/png 1
  757. image/jpg 1
  758. md 1
  759. text/markdown 1
  760. file.entity.ts 1
  761. file.dto.ts 1
  762. this.fileRepository.save 1
  763. this.fileRepository 1
  764. serve/:id 1
  765. @Res 1
  766. @types/express 1
  767. Content 1
  768. http://localhost:3000/files/serve 1
微信好友

用微信扫描二维码,
加我好友。

微信公众号

用微信扫描二维码,
订阅宁皓网公众号。

240746680

用 QQ 扫描二维码,
加入宁皓网 QQ 群。

统计

15260
分钟
0
你学会了
0%
完成

社会化网络

关于

微信订阅号

扫描微信二维码关注宁皓网,每天进步一点