在我的Rails控制器中使用强参数,如何声明允许的参数可以是String
还是Array
?
我强大的参数:
class SiteSearchController < ApplicationController
[...abbreviated for brevity...]
private
def search_params
params.fetch(:search, {}).permit(:strings)
end
end
我希望将POST
字符串搜索为String
或Array
:
要搜索一件事:
{
"strings": "search for this"
}
或者,要搜索多个内容:
{
"strings": [
"search for this",
"and for this",
"and search for this string too"
]
}
更新
目的:我正在创建一个API,我的用户可以“批量”请求(通过web-hooks
获取响应),或者提出一次性请求(立即获得响应)所有在同一个端点上。这个问题只是我要求的一小部分。
下一篇文章将采用相同的逻辑,我将允许搜索在多个页面上进行,即:
[
{
"page": "/section/look-at-this-page",
"strings": "search for this"
},
{
"page": "/this-page",
"strings": [
"search for this",
"and for this",
"and search for this string too"
]
}
]
或在一个页面上显示:
{
"page": "/section/look-at-this-page",
"strings": "search for this"
}
(这将使我需要强参数允许发送Object
或Array
。
这似乎是一件基本的事情,但我没有看到任何东西。
我知道我可以让strings
param成为一个数组,然后需要搜索1个东西,在数组中只有1个值...但是我希望这个参数比那个更健壮
答案 0 :(得分:15)
您可以只允许参数两次 - 一次用于数组,一次用于标量值。
def search_params
params.fetch(:search, {}).permit(:strings, strings: [])
end
答案 1 :(得分:10)
您可以检查params[:strings]
是否为数组并从那里开始工作
def strong_params
if params[:string].is_a? Array
params.fetch(:search, {}).permit(strings: [])
else
params.fetch(:search, {}).permit(:strings)
end
end