标签: ruby-on-rails-3
in erb
我不能在ruby中使用str split。
problem
帮帮我!
答案 0 :(得分:0)
只需在第二行(your link)上看到未定义方法'拆分'对于nil:NilClass ,这意味着你在{0}上没有在split上调用string。只需在'hello world'.split(' ')上运行irb即可获得["hello", "world"]。
split
string
'hello world'.split(' ')
irb
["hello", "world"]