我正在使用 ServeStaticModule 发回 index.html 文件。我想为 Facebook 预览添加自定义元标记。我尝试在客户端执行此操作,但这不起作用,因为 Facebook 采用旧的标题和描述,而不是在客户端修改的新标题和描述。客户端在 React 中。
关于如何做有什么建议吗?
您必须使用模板引擎 - 了解更多
模板示例
<!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!' };
}
}