gpt4 book ai didi

ruby-on-rails - 将范围添加到 Rails 中的常量化字符串

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

我正在尝试将范围发送到创建即时变量的操作。这是我的尝试:

foo_controller.rb

define_method(:generate_index) do |string, scope|
instance_variable_set( "@#{string}", (string.camelize.constantize).public_send scope )
end

def index
generate_index("foo", "all")
end

在上面的例子中,期望创建以下内容:

def index
@foo = Foo.all
end

相反,我收到一条错误消息:

unexpected tSYMBEG, expecting ')'

有人能帮我指出我哪里出错了吗?

谢谢

最佳答案

只需添加一些括号即可。

define_method(:generate_index) do |string, scope|
instance_variable_set( "@#{string}", string.camelize.constantize.public_send(scope))
end

关于ruby-on-rails - 将范围添加到 Rails 中的常量化字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28439578/

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