在Angular 9中,document.referrer不适用于实时服务器。
document.referrer是一个JavaScript属性,用于获取当前页面的引用页面(即来源页面)的URL。它通常用于跟踪用户的访问来源。然而,在实时服务器环境中,由于页面是动态生成的,并且没有引用页面的概念,因此document.referrer属性将返回空字符串或undefined。
在Angular 9中,如果你需要获取实时服务器环境中的引用页面URL,可以考虑使用其他方法。一种常见的方法是通过HTTP请求的请求头中获取Referer字段来获取引用页面URL。在Angular中,你可以使用HttpClient模块发送HTTP请求,并在请求头中查找Referer字段。
以下是一个示例代码,展示了如何使用Angular的HttpClient模块来获取引用页面URL:
import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';
@Component({
selector: 'app-example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.css']
})
export class ExampleComponent implements OnInit {
referrer: string;
constructor(private http: HttpClient) { }
ngOnInit(): void {
this.getReferrer();
}
getReferrer(): void {
this.http.get<any>('your-api-url')
.subscribe(response => {
this.referrer = response.headers.get('Referer');
});
}
}
在上面的示例中,我们通过HttpClient发送了一个GET请求到指定的API地址(your-api-url)。在订阅响应的回调函数中,我们可以通过response.headers.get('Referer')来获取Referer字段的值,即引用页面URL。
请注意,你需要将'your-api-url'替换为实际的API地址。此外,你还需要在Angular应用中正确配置HttpClient模块。
推荐的腾讯云相关产品:腾讯云云服务器(CVM)和腾讯云API网关。腾讯云云服务器提供可靠的云计算基础设施,可满足各种规模和需求的应用程序部署。腾讯云API网关是一种全托管的API服务,可帮助开发人员构建、部署和管理具有高性能和高可用性的API。你可以通过以下链接了解更多关于腾讯云云服务器和腾讯云API网关的信息:
腾讯云云服务器:https://cloud.tencent.com/product/cvm 腾讯云API网关:https://cloud.tencent.com/product/apigateway
请注意,以上答案仅供参考,具体的解决方案可能因实际需求和环境而异。
领取专属 10元无门槛券
手把手带您无忧上云