-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathraw_data.html
41 lines (29 loc) · 1.24 KB
/
raw_data.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
</script>
<script src="//code.bdstatic.com/npm/[email protected]/dist/av-min.js"></script>
<style>
body {
font-family: 'HankenGroteskRegular';
background-color:white;
}
</style>
<body>
<div hidden='hidden'>
下载量<span id="busuanzi_value_page_pv"></span>次
</div>
<script language="javascript" type="text/javascript">
window.location.href = 'https://drive.google.com/drive/folders/18iLqmUYDDOwIiiRbgwLpzw76BD62PK0p';
const { Query, User } = AV;
AV.init({
appId: "M9Q7oCWnnOg1lywIzxb8WbNJ-gzGzoHsz",
appKey: "HcE6O8qAIrWgqDKFLF9KDUzN",
serverURL: "https://m9q7ocwn.lc-cn-n1-shared.com"
});
const queryAll = new AV.Query('count_class'); // Data为Class名
const data = new AV.Object('count_class');
data.set('type', 'raw_data');
data.set('count', 1);
data.save().then((data) => {
});
</script>
</body>