2012-04-27 63 views

回答

0

您可以使用Ruby helper方法

URI.unescape('http://domain.com/dir/test%2Bpath') 
+0

我不想使用任何助手;我想直接從Request(或其他)檢索值,而不需要對我進行任何更改,並且我希望對該值進行編碼。 – 2012-04-27 01:56:54

1

在我的系統,我可以使用request.urlrequest.path

(rdb:1) request.url 
"http://localhost:3000/test2/path/a%2Bb" 
(rdb:1) request.path 
"/test2/path/a%2Bb" 

這應該在控制器或視圖中工作。