我在我的Rails下面的代碼查看:未定義的方法' - 」爲無:NilClass
-if program.description.length > 214
-total = 0
-perfect_index = 0
-program.description.split(' ').each do |word, index|
-total += word.length
-if total >= 214
-perfect_index = index - 1
-break
=program.description.split(' ')[0..perfect_index].join(' ')
\...
-else
=program.description
我不知道爲什麼指數可能有nil:NilClass
值。我覺得問題在於我的haml
變量的範圍,這可能不是我認爲應該的,但我不知道如何改善這個問題。