我今天尝试了铁路的教程,并对生成密码的这一部分感到困惑。
http://ruby.railstutorial.org/chapters/static-pages#top
require 'securerandom'
def secure_token
token_file = Rails.root.join('.secret')
if File.exist?(token_file)
# Use the existing token.
File.read(token_file).chomp
else
# Generate a new token and store it in token_file.
token = SecureRandom.hex(64)
File.write(token_file, token)
token
end
end
SampleApp::Application.config.secret_token = secure_token
任何人都可以解释一下这个文件的需求是什么。这个64位生成的秘密字符串的目的是什么。
答案 0 :(得分:2)