标签: ruby-on-rails
我想将变量值放入会话名称,例如
session[:this_is_@profile_of] = "Smth"
我该怎么做?
答案 0 :(得分:0)
您必须使用to_sym方法:
to_sym
session_key = "this_is_#{@profile}_of".to_sym session[session_key] = "Smth"