当我使用这个 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
。有没有其他选择?
当我使用这个 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
。有没有其他选择?