我正在与json-server
合作。我已经安装了npm install -g json-server
,并且正在使用
json-server --watch db.json
我在应用文件夹中添加了db.json
文件,数据如下:
{
"product": [
{
"userId": 1,
"firstName": "Krish",
"lastName": "Lee",
"phoneNumber": "123456",
"emailAddress": "krish.lee@learningcontainer.com"
},
{
"userId": 5,
"firstName": "jone",
"lastName": "mac",
"phoneNumber": "111111111",
"emailAddress": "jone.mac@learningcontainer.com"
}
]
}
,但只有http://localhost:3000/
在工作。它显示
Congrats!
You're successfully running JSON Server
✧*。٩(ˊᗜˋ*)و✧*。
Resources
/posts 1x
/comments 1x
/profile object
To access and modify resources, you can use any HTTP method:
GET POST PUT PATCH DELETE OPTIONS
undefined
Documentation
README
To replace this page, create a ./public/index.html file.
http://localhost:3000/product
不起作用。我该如何解决这个问题?
答案 0 :(得分:1)
第一次尝试运行json-server
时,如果找不到提供的源,load.js
会为您写出默认示例:
> json-server --watch db.json
\{^_^}/ hi!
Loading db.json
Oops, db.json doesn't seem to exist
Creating db.json with some default data
Done
Resources
http://localhost:3000/posts
http://localhost:3000/comments
http://localhost:3000/profile
Home
http://localhost:3000
在随后的运行中,由于该文件现在已存在,因此服务器似乎可以正常启动,但未使用您认为正确的db.json
文件。因此,这似乎有点不妥当,我opened a PR要求明确要求这种行为。