当我使用这个URL时:
http://localhost:3000/case/index?id=14
我可以使用params[:id]
但是当URL是:
http://localhost:3000/case/index#tabs-1?id=14
不能使用params[:id]
访问ID值
这是因为#tabs-1
。还有别的办法吗?
用这个代替:
http://localhost:3000/case/index?id=14#tabs-1