質問編集履歴
2
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -42,6 +42,8 @@
|
|
42
42
|
"linf": "2020/01/01 00:00:00",
|
43
43
|
"points": 1000
|
44
44
|
},
|
45
|
+
...
|
46
|
+
}
|
45
47
|
```
|
46
48
|
### 試したこと
|
47
49
|
UTF-8のエンコードを解除
|
1
データベースの書式を追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -23,6 +23,26 @@
|
|
23
23
|
strd = json.dumps(CLDATA, sort_keys=False, ensure_ascii=False, indent=2)
|
24
24
|
f.write(strd.encode("utf-8"))
|
25
25
|
```
|
26
|
+
|
27
|
+
### データベースの例
|
28
|
+
```
|
29
|
+
{
|
30
|
+
"user": {
|
31
|
+
"UC7gpQJYXtykp-mzkURzX8KA": {
|
32
|
+
"info": {
|
33
|
+
"name": "name",
|
34
|
+
"pfp": "link",
|
35
|
+
"subs": 10000,
|
36
|
+
"views": 100000,
|
37
|
+
"videos": 100,
|
38
|
+
"chdate": "2020/01/01 00:00:00"
|
39
|
+
},
|
40
|
+
"messages": 10000,
|
41
|
+
"lmsg": "2020/01/01 00:00:00",
|
42
|
+
"linf": "2020/01/01 00:00:00",
|
43
|
+
"points": 1000
|
44
|
+
},
|
45
|
+
```
|
26
46
|
### 試したこと
|
27
47
|
UTF-8のエンコードを解除
|
28
48
|
|