2

我正在使用ngx-device-detector库来检测设备类型(移动设备、平板电脑或台式机)。该库在客户端模式下完美运行,但在服务器上预呈现 Angular 通用应用程序时无法检测到设备类型(在服务器上预呈现后,在客户端模式下完美运行)。

  1. 如果有人给我一个适用于该库的解决方案,我将不胜感激
  2. 最终,如果这个库没有任何解决方案,请给我另一个解决方案

谢谢。

4

1 回答 1

4

我快速查看了代码,我认为您可以setDeviceInfo使用可以从请求标头中检索的用户代理字符串进行调用

app.module.ts

import {Request} from 'express';
import {REQUEST} from '@nguniversal/express-engine/tokens';

constructor(@Inject(PLATFORM_ID) private platformId, 
            @Optional() @Inject(REQUEST) protected request: Request,
            private deviceService: DeviceDetectorService)
{
    if(!isPlatformBrowser(platformId))
    {
        this.deviceService.setDeviceInfo(request.headers['user-agent']);
    }
}
于 2020-04-17T10:30:27.733 回答