-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
124 lines (124 loc) · 3.78 KB
/
db.json
File metadata and controls
124 lines (124 loc) · 3.78 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"articles": [
{
"title": "テスト記事1",
"body": "これはローカルAPIのテスト記事1です。\n編集してみた。",
"userId": 1,
"id": "1"
},
{
"id": "2",
"title": "テスト記事2",
"body": "これはローカルAPIのテスト記事2です。",
"userId": 1
},
{
"id": "3",
"title": "テスト記事3",
"body": "これはローカルAPIのテスト記事3です。ページネーションの動作確認に使えます。",
"userId": 1
},
{
"id": "4",
"title": "React練習用記事4",
"body": "Reactとjson-serverを使ったAPI呼び出しのテスト記事4です。",
"userId": 1
},
{
"id": "5",
"title": "React練習用記事5",
"body": "useEffectとuseStateを使ってデータを読み込む練習用の記事5です。",
"userId": 1
},
{
"id": "6",
"title": "React練習用記事6",
"body": "APIクライアントラッパーを使ってGETリクエストを送るテスト記事6です。",
"userId": 2
},
{
"id": "7",
"title": "React練習用記事7",
"body": "ページネーションの2ページ目以降の表示確認に使える記事7です。",
"userId": 2
},
{
"id": "8",
"title": "React練習用記事8",
"body": "削除ボタンや編集ボタンのレイアウト確認用の記事8です。",
"userId": 2
},
{
"id": "9",
"title": "React練習用記事9",
"body": "詳細ページの表示やルーティングのテストに使える記事9です。",
"userId": 2
},
{
"id": "10",
"title": "React練習用記事10",
"body": "10件目の記事です。ここまでで1ページ分のテストデータになります。",
"userId": 3
},
{
"id": "11",
"title": "React練習用記事11",
"body": "2ページ目の先頭に表示される記事11です。",
"userId": 3
},
{
"id": "12",
"title": "React練習用記事12",
"body": "ページ切り替え時の状態管理を確認するための記事12です。",
"userId": 3
},
{
"id": "13",
"title": "React練習用記事13",
"body": "POSTリクエストで新規作成した記事と区別するための固定データ13です。",
"userId": 3
},
{
"id": "14",
"title": "React練習用記事14",
"body": "PUTやPATCHを使った更新処理の確認に使える記事14です。",
"userId": 4
},
{
"id": "15",
"title": "React練習用記事15",
"body": "削除処理のテスト用に使える記事15です。削除ボタンの挙動を確認してください。",
"userId": 4
},
{
"id": "16",
"title": "React練習用記事16",
"body": "エラー処理やローディング表示のテストに使える記事16です。",
"userId": 4
},
{
"id": "17",
"title": "React練習用記事17",
"body": "ルーティングの戻るボタンやリンク動作の確認に使える記事17です。",
"userId": 4
},
{
"id": "18",
"title": "React練習用記事18",
"body": "ユーザーIDごとのフィルタリング機能を試したくなったとき用の記事18です。",
"userId": 5
},
{
"id": "19",
"title": "React練習用記事19",
"body": "フロントエンド側だけでソートや検索を試すときのテストデータ19です。",
"userId": 5
},
{
"id": "20",
"title": "React練習用記事20",
"body": "20件目の記事です。ページネーションやCRUDの総合テストに使えます。",
"userId": 5
}
]
}