我集成了timeonsite库,将用户在网站上花费的时间存储在 MySQL 数据库中。我正在使用以下代码来实现相同的目的。
但是,数据不会存储在iPhone 或 iPad 等 IOS 设备中,而是适用于所有其他浏览器,如 Chrome、Edge、Opera、Firefox 等,包括 Android chrome 和 firefox。
var Tos;
(function(d, s, id, file) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.onload = function() {
var config = {
trackBy: 'seconds',
callback: function(data) {
console.log(data);
// give your endpoint URL server-side URL
// that is going to handle your TOS data which is of POST method.
// Eg. PHP, nodejs or python URL which saves this data to your DB
// replace with your endpoint URL
var endPointUrl = 'http://localhost:4500/tos';
if (data && data.trackingType) {
if (data.trackingType == 'tos') {
if (Tos.verifyData(data) != 'valid') {
console.log('Data abolished!');
return;
}
}
// make use of sendBeacon if this API is supported by your browser.
// sendBeacon is experimental technology; it may not work well
if (navigator && typeof navigator.sendBeacon === 'function') {
var blob = new Blob([JSON.stringify(data)], {
type: 'application/json'
});
navigator.sendBeacon(endPointUrl, blob);
}
}
}
};
if (TimeOnSiteTracker) {
Tos = new TimeOnSiteTracker(config);
}
};
js.src = file;
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'TimeOnSiteTracker', 'https://cdnjs.cloudflare.com/ajax/libs/timeonsite/1.2.0/timeonsitetracker.js'));
这个问题的原因是什么以及如何解决?