Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私がする時:
params[:page] * 10
それは私に1111111111を与えます.10を返したいです.
私は何を間違っていますか?
文字列の乗算は、文字列を n 回繰り返します。paramsRailsでは常にparams[:page]文字列の配列なので、最初に で整数に変換する必要がありますto_i。
params
params[:page]
to_i