Ruby对我来说是新的,我有一个蹩脚的问题。
我正在与Sinatra一起提供网络应用程序,我正在使用静态html文件作为前端部分。
项目结构:
我想在用户登录index.html
时调用重定向到chat.html目前这就是我所拥有的:
# some login stuff
if first_user_found && is_password_correct
redirect to '/chat'
else
#do another thing
end
和/ chat
get '/chat' do
File.read('public/chat.html')
end
当我打电话给localhost:4567 /聊天时加载chat.html, 但是当我尝试登录网络选项卡时,会调用聊天,但不会执行重定向。
你能帮忙吗?