当我尝试在 Iframe 中显示 google 分析时,为什么会出现错误?

发布于 2025-01-11 09:13:46 字数 698 浏览 0 评论 0原文

我使用 iframe 在我的网站中基于 Angular 12 显示 google 分析。

这是使用 iframe 的组件:

Typescript:

export class UserReportComponent implements OnInit {

   URL: string;


  constructor(private domSanitizer: DomSanitizer) { }

  ngOnInit(): void {
    this.URL= this.domSanitizer.bypassSecurityTrustResourceUrl(path-to-google-analytics)
  }
}

Template:

<iframe width="100%" height="950" [src]="URL" frameborder="0" style="border:0" allowfullscreen></iframe>

但是当在控制台中打开该组件时,我收到这些错误:

Indicate whether to send a cookie in a cross-site request by specifying its SameSite attribute      

知道如何修复错误吗?

I use Iframe to display google analytics in my website based on angular 12.

Here is the component where iframe is used:

Typescript:

export class UserReportComponent implements OnInit {

   URL: string;


  constructor(private domSanitizer: DomSanitizer) { }

  ngOnInit(): void {
    this.URL= this.domSanitizer.bypassSecurityTrustResourceUrl(path-to-google-analytics)
  }
}

Template:

<iframe width="100%" height="950" [src]="URL" frameborder="0" style="border:0" allowfullscreen></iframe>

But when the component is opened in the console I get those errors:

Indicate whether to send a cookie in a cross-site request by specifying its SameSite attribute      

Any idea how to fix the error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文