2

似乎我在路由中定义 Long 变量时遇到问题。这是路由文件中的行:

GET   /topic/:id                    controllers.Topics.show(id: Long)

这是处理这条路线的方法:

public static Result show(long id) {
   // handle request here...
} 

我得到的是错误 324:

错误 324 (net::ERR_EMPTY_RESPONSE):服务器关闭连接而不发送任何数据。

我认为问题出在Long数据类型上,因为使用Int它就像一个魅力。
使它起作用的调整是什么?

4

1 回答 1

8

您必须在操作中使用Long对象而不是long主要类型:

public static Result show(Long id) {
   // handle request here...
} 
于 2012-08-06T09:20:15.867 回答