mirror of
https://github.com/tgbot-collection/YYeTsBot.git
synced 2025-11-25 03:15:05 +08:00
22 lines
516 B
JavaScript
22 lines
516 B
JavaScript
function getCookie(cname) {
|
|
var name = cname + "=";
|
|
var ca = document.cookie.split(';');
|
|
for (var i = 0; i < ca.length; i++) {
|
|
var c = ca[i].trim();
|
|
if (c.indexOf(name) === 0) return c.substring(name.length, c.length);
|
|
}
|
|
return "";
|
|
}
|
|
|
|
|
|
function accessMetrics(type) {
|
|
axios.post('/api/metrics?type=' + type)
|
|
.then(function (response) {
|
|
// console.log(response);
|
|
})
|
|
.catch(function (error) {
|
|
// console.log(error);
|
|
});
|
|
}
|
|
|