我正在根据文档的 ID 在集合中搜索文档。
find(the_id)
找不到返回什么?
session[:remote_ip] = request.env['REMOTE_ADDR'].split(',').first
user = User.find({user_id: session[:remote_ip]})
if user.nil?
# Do stuff if find couldn't find the user_id
# Am I right to assume it will return nil?