#鸿蒙通关秘籍#如何使用Web组件的智能防跟踪功能?

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
紫电清霜EVT

智能防跟踪功能的作用是在跟踪型网站作为三方插入别的网页时,禁止其发送的网络请求携带cookie。通过 enableIntelligentTrackingPrevention 接口能启用该功能,默认是关闭状态。

typescript import { webview } from '@kit.ArkWeb';

@Entry @Component struct WebComponent { controller: webview.WebviewController = new webview.WebviewController();

build() { Column() { Button('enableIntelligentTrackingPrevention') .onClick(() => { this.controller.enableIntelligentTrackingPrevention(true); console.log("enableIntelligentTrackingPrevention: true"); }); Web({ src: 'www.example.com', controller: this.controller }); } } }

分享
微博
QQ
微信
回复
2天前
相关问题
求大佬告知如何实现截屏功能
2049浏览 • 1回复 待解决
求告知如何实现截屏功能
580浏览 • 1回复 待解决
如何实现截屏功能,有人知道吗?
1991浏览 • 1回复 待解决