NestJS 示例

简介: NestJS 示例

emqx.controller.ts 文件内容:

import { Body, Controller, HttpStatus, Post, Res } from '@nestjs/common';
import { Response } from 'express';
class EmqxAuthReqDto {
  clientid: string;
  username: string;
  password: string;
}
@Controller('emqx')
export class EmqxController {
  @Post('auth')
  auth(@Body() body: EmqxAuthReqDto, @Res() res: Response) {
    console.log(body);
    const result = {
      result: 'allow',
      is_superuser: true,
    };
    return res.status(HttpStatus.OK).send(result);
  }
}
目录
相关文章
|
开发框架 JavaScript 前端开发
NestJS:基础掌握 从了解到使用(上)
NestJS:基础掌握 从了解到使用(上)
191 0
|
JSON 关系型数据库 MySQL
NestJS:基础掌握 从了解到使用(下)
NestJS:基础掌握 从了解到使用(下)
272 0
|
3月前
|
数据采集 调度 数据库
flask-apscheduler的使用与示例
flask-apscheduler的使用与示例
178 4
|
3月前
|
存储 JavaScript 前端开发
TypeScript :使用mock提供数据&as const 的使用&tsconfig.json配置
本文介绍了如何在项目中使用 Mock 提供数据,包括安装依赖、配置 Vite 和 TypeScript,以及如何使用 `as const`、元组和 tsconfig.json 配置文件。通过这些配置,可以实现更灵活和高效的开发体验。
|
6月前
|
API Python
Flask-RESTful基础示例
Flask-RESTful基础示例
|
7月前
|
JSON JavaScript 前端开发
Axios 的使用方法
Axios 的使用方法
55 0
|
8月前
|
JSON Go 数据格式
golang学习6,glang的web的restful接口传参
golang学习6,glang的web的restful接口传参
|
8月前
|
JSON 前端开发 JavaScript
Vue+Axios+SpringBoot后端同时接收文件和json作为请求参数
Vue+Axios+SpringBoot后端同时接收文件和json作为请求参数
397 0
|
8月前
|
存储 JavaScript API
Pinia介绍及简单示例
Pinia介绍及简单示例
244 0
|
JSON 数据格式
Vue+axios请求本地json
Vue+axios请求本地json
136 0