I have found several websites pointing to using the following code to add support for custom parameter formats:
ActionController::Base.param_parsers[Mime::PLIST] = lambda do |body|
str = StringIO.new(body)
plist = CFPropertyList::List.new({:data => str.string})
CFPropertyList.native_types(plist.value)
end
这里是关于“ Apple”清单格式,这是我所期望的。 然而,使用Rails 3.2.1 服务器开端,说param_parsers
没有定义。 我无法找到任何文件,以便加以解释或替代使用,因为文件确实列入2.x文件,而不是列入3.x文件。
铁路3中是否有任何其他方式支持《移动空间标准》和《铁路管理条例》要求的习惯参数格式?