前提・実現したいこと
サーバができていないので、モックサーバにてAPIのテストができるようにしたい
発生している問題・エラーメッセージ
JSONのテストデータを作成後、起動時にエラーが出力される
C:\tmp>json-server test2.json
{^_^}/ hi!
Loading test2.json
SyntaxError: Malformed JSON in file: test2.json
Unexpected token in JSON at position 1516
at FileAsync.parse [as deserialize] (<anonymous>)
at C:\Users\koyam\AppData\Roaming\npm\node_modules\json-server\node_modules\lowdb\adapters\FileAsync.js:41:35
C:\tmp>
該当のソースコード
{
"redelivery-day": [
{
"id":1,
"inquiry number": "3954-5372-1213",
"customer_id":"example@xxxx.com",
"customer_tel":"08012345678",
"possible_dates": [
{"id": 1, "2021/10/02(土)": "false" },
{"id": 2, "2021/10/03(日)": "ture" },
{"id": 3, "2021/10/04(月)": "false" },
{"id": 4, "2021/10/05(火)": "ture" },
{"id": 5, "2021/10/06(水)": "false" },
{"id": 6, "2021/10/07(木)": "ture" },
{"id": 7, "2021/10/08(金)": "false" }
]
}
],
"redelivery-timezon": [
{
"id":1,
"inquiry number": "3954-5372-1213",
"customer_id":"example@xxxx.com",
"customer_tel":"08012345678",
"possible_date":"2021/10/03(日)",
"possible_timezon": [
{"id": 1, "AM": "false" },
{"id": 2, "12時~14時": "ture" },
{"id": 3, "14時~16時": "false" },
{"id": 4, "16時~18時": "ture" },
{"id": 5, "18時~20時": "false" },
{"id": 6, "20時~22時": "ture" },
{"id": 7, "時間指定なし": "ture" }
]
}
],
"reception": [
{
"id":1,
"inquiry number": "3954-5372-1213",
"customer_id":"example@xxxx.com",
"customer_tel":"080-1234-5678",
"possible_date":"2021/10/03(日)",
"possible_timezon":"12時~14時"
}
],
"completion": [
{
"id":1,
"inquiry number": "3954-5372-1213",
"customer_id":"example@xxxx.com",
"customer_tel":"080-1234-5678",
"possible_date":"2021/10/03(日)",
"possible_timezon":"12時~14時"
}
]
}
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
C:\tmp>node -v
v14.18.0
C:\tmp>npm -v
6.14.15
C:\tmp>
あなたの回答
tips
プレビュー