gpt4 book ai didi

ruby-on-rails - Rails 插入 action_name

转载 作者:太空宇宙 更新时间:2023-11-03 18:12:04 26 4
gpt4 key购买 nike

我有以下代码结构:

<% types = [
{
one: 'one 1',
two: 'two 2',
three: 'three 3'
}
] %>
<% result = types[:#{action_name}]%>

<% puts result %>

onetwothree 是我的操作,我想将其插入到 result 中变量,因此操作的结果将在 types 数组中获得相应的对象。我该怎么做,我所做的似乎返回了一个错误。

:#{action_name} 它返回一个错误

最佳答案

您的代码在语法上是错误的。

修复是::"#{action_name}"。而且你不需要哈希数组,只有哈希就足够了。

<% types =
{
one: 'one 1',
two: 'two 2',
three: 'three 3'
}
%>

关于ruby-on-rails - Rails 插入 action_name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32269557/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com