使用sharedObject跟踪点击次数

如何使用sharedObject跟踪点击次数并将它们存储在.txt文件中?我的客户想跟踪用户的点击,我不知道如何使用sharedObject工作。谁能帮我吗?使用sharedObject跟踪点击次数

回答:

如果您将点击存储在SharedObject中,点击数据将保留在客户端上。您仍然需要将数据发布到服务器捕获它。您需要在SharedObject中存储的是用户标识,因此您可以确定哪些点击属于哪个用户。

var so:SharedObject = SharedObject.getLocal("mydomain.com"); 

so.data.userId = "unique-id" // this would be a unique id from the server

so.flush(); // this writes the data in the SharedObject

以上是 使用sharedObject跟踪点击次数 的全部内容, 来源链接: utcz.com/qa/266087.html

回到顶部