首页 > 代码库 > 路由helper
路由helper
root_url http://192.168.1.110:3000/users/sign_up?inviter=14658733081530 root_path /users/sign_up?inviter=14658733081530 :class => (action_name == "" ? "a" : nil) request.path => ***_path Request 資訊收集 在 Controller 的 Action 之中,Rails 提供了一些方法可以讓你得知此 request 各種資訊,包括: ? action_name 目前的 Action 名稱 ? cookies Cookie 下述 ? headers HTTP 標頭 ? params 包含用戶所有傳進來的參數 Hash,這是最常使用的資 訊? ? request 各種關於此 request 的詳細資訊 ? request_method method delete?, get?, head?, post?, put? ? xml_http_request? 或 xhr? ? url ? protocol, host, port, path 和 query_string ? domain host_with_port port_string ssl? remote_ip? path_without_extension, path_without_format_and_extension, format_and_extension, relative_path env accepts format mime_type content_type headers body content_length response 代表要回傳的內容,會由 Rails 設定好。通常你會用 到的時機是你想加特別的 Response Header。 ? session Session 下述 正確的說, params 這個 Hash 是 ActiveSupport::HashWithIndifferentAccess 物件,而不是普通的 Hash 而已。Ruby 內建的 Hash,用 Symbol 的 hash[:foo]和用字 串的 hash["foo"]是不一樣的,這在混用的時候常常搞錯而取不到值,算是常見的臭 蟲來源。Rails 在這裡使用的 ActiveSupport::HashWithIndifferentAccess 物 件,無論鍵是 Symbol 或字串,都指涉相同的值,減少麻煩。
路由helper
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。