在使用NestJs中的ServeStaticModule提供服务之前是否可以修改index.html?

问题描述 投票:0回答:1

我正在使用 ServeStaticModule 发回 index.html 文件。我想为 Facebook 预览添加自定义元标记。我尝试在客户端执行此操作,但这不起作用,因为 Facebook 采用旧的标题和描述,而不是在客户端修改的新标题和描述。客户端在 React 中。

关于如何做有什么建议吗?

javascript nestjs meta
1个回答
1
投票

您必须使用模板引擎 - 了解更多

模板示例

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>App</title>
  </head>
  <body>
    {{ message }}
  </body>
</html>

app.controller.ts

import { Get, Controller, Render } from '@nestjs/common';

@Controller()
export class AppController {
  @Get()
  @Render('index')
  root() {
    return { message: 'Hello world!' };
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.