Cordova
कॉर्डोवा में Google Analytics
खोज…
किसी भी प्लगइन के बिना कॉर्डोबा में Google विश्लेषिकी।
Index.js के भीतर एनालिटिक्स फ़ंक्शन डालें
function analytics(){
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','lib/analytics.js','ga');
if(window.localStorage) {
ga('create', 'UA-XXXXXXX-1', {
'storage': 'none'
, 'clientId': window.localStorage.getItem('ga_clientId') /*The tracker id obtained from local storage*/
});
ga(function(tracker) {
window.localStorage.setItem('ga_clientId', tracker.get('clientId'));
/*The tracker id for each device is different and stored in local storage*/
});
}
else {
ga('create', 'UA-XXXXXXX-1', 'auto');
}
}
प्रत्येक HTML पृष्ठ में प्रत्येक स्क्रिप्ट टैग के नीचे डालें और पृष्ठ का नाम संशोधित करें
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','lib/analytics.js','ga');
ga('set','checkProtocolTask',null);
/*checkProtocal Task is set to null so that GA allows tracking other than http/https */
ga('set', 'page', "Page Name");
/*Page Name is name of each html page*/
ga('send', 'pageview');
</script>
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow