nestjs为啥不火

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nestjs为啥不火相关的知识,希望对你有一定的参考价值。

参考技术A 因为操作不简便
Nest.js是用于构建高效且可伸缩的服务端应用程序的渐进式Node.js框架。支持Typescript、面向AOP编程、支持typeorm、Node.js版的spring、构建微服务应用。
Nest.js是用于构建高效且可伸缩的服务端应用程序的渐进式Node.js框架。支持Typescript、面向AOP编程、支持typeorm、Node.js版的spring、构建微服务应用。

NestJs:为啥我们不使用 DTO 来替换所有接口?

【中文标题】NestJs:为啥我们不使用 DTO 来替换所有接口?【英文标题】:NestJs: Why we don't use DTOs to replace all interfaces?NestJs:为什么我们不使用 DTO 来替换所有接口? 【发布时间】:2020-12-08 16:41:00 【问题描述】:

我们能否让 DTO 成为验证的真实来源,并在控制器和服务中使用它? 如果我已经有 DTO,为什么还需要接口?

【问题讨论】:

“替换所有接口”是什么意思? 【参考方案1】:

如果您不想使用接口,则不需要接口。对于作为基本模型的 DTO,我也不使用接口。话虽如此,它们真的很强大,所以我绝对不会阻止你使用它们,举个例子:

interface ILogger 
    log(message: string) : Promise<void>;


class ConsoleLogger implements ILogger 
    log(message: string) : Promise<void> 
        return Promise.resolve(console.log(message));
    


class DatabaseLogger implements ILogger 

    private dbConnection;

    constructor() 
        dbConnection = new DBConnection(); //Fake but it drives the point across 
    

    async log(message: string) : Promise<void> 
        return await this.dbConnection.saveLog(message);
    


class DoTheThing 

    private _logger: ILogger;

    //You can have nest inject the best logger for this situation and your code doesn't have to care
    //about the actual implementation :)
    constructor(logger: ILogger) 
        this._logger = logger;
    

    async myMethod() 
        const tweetMessage = await sendTweet('...');
        this._logger.log(tweetMessage);
    

【讨论】:

以上是关于nestjs为啥不火的主要内容,如果未能解决你的问题,请参考以下文章

NestJs:为啥我们不使用 DTO 来替换所有接口?

为啥这个Schema为空.....如何在nestjs中设置@ApiProperty

为啥白名单不会出现错误模型 NestJs 的错误

为啥 NestJS mysql 查询错误不包含所有执行上下文但在 process._tickCalback 处停止?

为啥 jwtService 未定义?

Nestjs - @nestjs/graphql GraphQLGatewayModule 总是返回错误请求