在我的 .erb 文件中,我有以下 jQuery 调用:
$.get(url, { point: pointValue, chore: investigate });
point
和都是chore
整数。
在我的 .rb 文件中,我有以下语句:
get '/estimate/:id' do
print params[:chore] # for debugging
if params[:chore] == 1
print "true!"
end
end
当我 printparams[:chore]
时,正确的值会在我的控制台中打印出来,0 或 1。
但是,即使是1
,该if
块也不会执行,即"true!"
不会打印到控制台。
我完全被难住和困惑!有任何想法吗?