命名空间
方法
常量
ALL | = | AllType.instance |
|
||
EXTENSION_LOOKUP | = | {} |
LOOKUP | = | {} |
SET | = | Mimes.new |
类公共方法
[](type) 链接
来源:显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/mime_type.rb, line 51 def [](type) return type if type.is_a?(Type) Type.lookup_by_extension(type) end
fetch(type, &block) 链接
来源:显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/mime_type.rb, line 64 def fetch(type, &block) return type if type.is_a?(Type) EXTENSION_LOOKUP.fetch(type.to_s, &block) end
symbols() 链接
来源:显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/mime_type.rb, line 56 def symbols SET.symbols end