由於<%=「%.1f」%(r.lint/@compare*),我的導軌應用程序中出現'數組無法強制轉換爲浮點型'錯誤100)%>在我看來。任何幫助,將不勝感激。陣列不能被強制轉換爲浮點型
查看
<% @result.each do |r| %>
<%= "%.2f" % (r.lint/227) %></br>
<%= "%.2f" % (r.lint/227/2.47) %></td>
<%= "%.1f" % (r.lint/@compare*100) %>
<% end %>
控制器
def trial
@result = Result.where('trial_id' => params[:trial_id]).order('lint DESC')
@compare = Trial.where('trial_id' => params[:trial_id]).pluck(:comp_lint)
end
謝謝阿米特。作品一種享受。 – Grinskull