typed parameter:在Rails中使用强参数创建类型化的参数类 源码
类型参数 在rails中使用强参数创建类型化的参数类。 您可以在控制器中清除允许的参数代码,并将其转换为所需的类型。 安装 将此行添加到您的应用程序的Gemfile中: gem 'typed-parameter' 然后执行: $ bundle install 或将其自己安装为: $ gem install typed-parameter 用法 例子1.键入convert class UserCreateParams < TypedParamter :: Base field :name , String field :age , Integer field :email , String end ----------------------------------------------- ############ ## before ## ############
用户评论