1

当我使用这个 URL 时:

http://localhost:3000/case/index?id=14

我可以使用params[:id]

但是当 URL 是:

http://localhost:3000/case/index#tabs-1?id=14

ID 值无法使用params[:id]

其原因在于#tabs-1。有没有其他选择?

4

1 回答 1

1

改用这个:

http://localhost:3000/case/index?id=14#tabs-1

查询字符串应该紧跟在路径之后。

于 2013-01-10T10:36:10.777 回答