JSON-Server:使用参数

时间:2017-06-08 14:49:27

标签: javascript api mocking json-server

我正在尝试使用JSON-server模拟服务响应。

实际网址是:message-service / notifications?id = xyx

我正在嘲笑此URL以通过JSON服务器点击虚拟URL:

{
    "/message-service/notifications?id=:id": "/notifications/:id"
}

我的Json对象如下所示:

"notifications": [
        {
            "id": "xyz",
            "getNotificationsResponse":{ }
        }
]

问题是JSON-server没有访问虚拟URL来获取数据。 这里应该改变什么来使JSON服务器响应数据?

我在控制台中遇到错误:

Request URL:http://localhost:9081/message-service/notifications?id=xyz
Request Method:GET
Status Code:404 Not Found

1 个答案:

答案 0 :(得分:0)

尝试更改本地主机'在您的Wi-Fi IP地址上: localhost:9081 => 111.111.1.1:9081

Mac - 系统偏好设置 - 网络 - ' Wi-Fi已连接到您的网络名称'并具有IP地址111.111.1.1'。