gpt4 book ai didi

typescript - nest.js @Post设置响应的内容类型

转载 作者:行者123 更新时间:2023-12-03 15:36:18 24 4
gpt4 key购买 nike

我正在尝试为我的API实现一个POST端点,该端点在调用时返回HTML字符串。

目前,我的代码如下所示:

import { Controller, Post } from '@nestjs/common';
@Controller()
export class MyController {
@Post('/endpoint')
public create(): string {
return `
<!DOCTYPE html>

</html>`;
}
}

如何告诉POST端点发送正确的内容类型及其响应?我搜索了所有文档,但找不到对我有用的东西。

预先感谢您的帮助

最佳答案

我自己找到了答案。我只是在@Header装饰器后面添加了@Post装饰器:

import { Header } from '@nestjs/common'

@Post('/endpoint')
@Header('content-type', 'text/html')
public create(): string {
//
}

关于typescript - nest.js @Post设置响应的内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52531707/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com