1

这是我定义的路线:
GET /user/:id controllers.Users.show(id: Long)

Users这是此 GET 请求 的处理程序(在类中):

public static Result show(long id) {
        return ok("hello " + id);
    }

我收到此错误:

No data received 无法加载网页,因为服务器未发送数据。以下是一些建议: 稍后重新加载此网页。错误 324 (net::ERR_EMPTY_RESPONSE):服务器关闭连接而不发送任何数据。

这很奇怪,因为它是唯一存在此问题的页面,而且一切似乎都很正常。
那么为什么会这样呢?

4

1 回答 1

3

使用Longasid的类型(而不是long):

public static Result show(Long id) {
    return ok("hello " + id);
}
于 2012-10-16T11:59:44.143 回答