本文介绍了Ruby中的slice函数有相反的功能吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在此帖子中,切片功能仅用于获取必要的元素的参数.我应该使用什么功能来排除一个params元素(例如user_id)?
In this post, slice function is used to get only necessary elements of params. What would be the function I should use to exclude an element of params (such as user_id)?
Article.new(params[:article].slice(:title, :body))
谢谢.
推荐答案
使用除:
a = {"foo" => 0, "bar" => 42, "baz" => 1024 }
a.except("foo")
# returns => {"bar" => 42, "baz" => 1024}
这篇关于Ruby中的slice函数有相反的功能吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!