开发者问题收集

如何在 reactjs 中使用 json 服务器?

2020-06-09
3406

我使用以下命令安装了 json-server:

npm install -g json-server

然后我创建了一个像这样的 db.json:

{
  "employees": [
    {
      "id": 1,
      "first_name": "Sebastian",
      "last_name": "Eschweiler",
      "email": "[email protected]"
    },
    {
      "id": 2,
      "first_name": "Steve",
      "last_name": "Palmer",
      "email": "[email protected]"
    },
    {
      "id": 3,
      "first_name": "Ann",
      "last_name": "Smith",
      "email": "[email protected]"
    }
  ]
}

我使用以下命令监视 json-server:

json-server --watch db.json 

但是它不起作用。终端中的消息是:

cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.

发生了什么?

1个回答

您可以将 json-server 安装为开发依赖项

npm install -D json-server

然后您可以运行以下命令

npx json-server --watch db.json --port 3004

它将起作用。

Sunil Prakash
2020-06-29