参见英文答案 Unexpected keyword_end error, yet syntax seems fine2个 我创建了一个迭代Order对象数组的类方法.我正在使用那里的数据来构建哈希.迭代中的一个if块是: if !(report_hash[user_id][reason])
我创建了一个迭代Order对象数组的类方法.我正在使用那里的数据来构建哈希.迭代中的一个if块是:
if !(report_hash[user_id][reason]) report_hash[user_id][reason] = 1 else report_hash[user_id][reason]++ end
当我运行这个方法时,我得到:
.rb:66 syntax error, unexpected keyword_end (SyntaxError)
第66行是终点的所在.为什么Ruby不期望在这个块的末尾有一个结束语句?一旦一切正常,我打算将所有条件逻辑移动到单独的类方法中,但我一直试图解决这个问题并且有点卡住了.
增量方法在Ruby中不合法,而是使用= 1:if !(report_hash[user_id][reason]) report_hash[user_id][reason] = 1 else report_hash[user_id][reason] += 1 end
一点改进(代码大小):我会将此代码重构为以下内容:
report_hash[user_id][reason] ||= 1 # this will set report_hash[user_id][reason] to 1 if it is nil report_hash[user_id][reason] += 1