博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Rails permit params 接受Hash,Array
阅读量:5959 次
发布时间:2019-06-19

本文共 796 字,大约阅读时间需要 2 分钟。

hot3.png

 

describe 'nested attributes on articles (which has_many comments)' do  before do    @hash = {      "article" => {        "title" => "Test",        "body" => "test body",        "comments_attributes" => {          '0'=>{"author" => "John", "content" => "great"},          '1'=>{"author" => "Mary", "content" => "awful"}        }      }    }    @params = ActionController::Parameters.new @hash  end  it 'shows how to permit nested parameters' do    attributes = @params.      require(:article).      permit(:title, comments_attributes: [:author,                                :content])[:comments_attributes].        must_equal @hash['article']['comments_attributes']  endend

http://www.carreno.me/articles/understanding-strong-parameters-in-rails-4

转载于:https://my.oschina.net/u/923974/blog/789465

你可能感兴趣的文章
演示:交换机端口安全的配置
查看>>
我的友情链接
查看>>
linux 系统调优步骤 例
查看>>
显式方法与隐式方法
查看>>
Android防火墙+流量统计代码
查看>>
通知中心
查看>>
马哥9-3
查看>>
我的友情链接
查看>>
MVC中的三个模块
查看>>
C#学习要点一
查看>>
需求分析
查看>>
Line: 220 - com/opensymphony/xwork2/spring/SpringObjectFactory.java:220:-1
查看>>
跟踪被锁的AD账号
查看>>
Python 学习笔记 - 递归和模块中的特殊变量
查看>>
redis 安装配置
查看>>
oracle 常用命令大汇总
查看>>
2012年春运火车票电话和网上订票技巧、攻略
查看>>
运维工程师的职责和前景
查看>>
Gcc编译流程解析
查看>>
迈出第一步
查看>>