0
class TagController < ApplicationController
def show
@videos = Video.tagged_with(params[:id])
respond_to do |format|
format.html # show.html.erb
end
end
end
Started GET "/tag/node.js" for 127.0.0.1 at 2011-06-13 23:10:59 +0100
Processing by TagController#show as JS
Parameters: {"id"=>"node"}
目前我路過node.js
的價值爲我params[:id]
但不知何故(根據日誌)我的應用程序只node
傳遞的參數值。
我怎樣才能確保值node.js
傳遞到我的控制器?
在此先感謝。