0
在我的形式隨機字符串我要生成以下字段如何產生軌
f.input :lti_api_key, label: "LTI API KEY"
f.input :lti_api_secret, label: "LTI API SECRET"
我怎麼能做到這一點隨機字符串? 請幫我...
在我的形式隨機字符串我要生成以下字段如何產生軌
f.input :lti_api_key, label: "LTI API KEY"
f.input :lti_api_secret, label: "LTI API SECRET"
我怎麼能做到這一點隨機字符串? 請幫我...
你可以有你f.input這樣
<%= f.text_field :name, id: :bug_name, value: "#{SecureRandom.hex(64)}" %>
你好,你可以這樣做:
require 'securerandom'
SecureRandom.hex(64)
你是什麼意思*隨機字符串*?給我們一個例子。 – Pavan
我只是想生成一個隨機&唯一的字符串。 –
這樣的事「2d9492324049139257ac65ff49e97b961d6a657b6f6fa1d144d5af66e364afcb」 –