我正在创建一个新网页,我的用户可以拥有个人资料页面,但我似乎无法找到制作这样一个网址的方法:
webpage.com/profile/username
要执行我的profile_controller
操作index
并使用 /username 上的变量。
但我似乎找不到路。
profile_controller.rb
class ProfileController < ApplicationController
def index
profile_info = Profile.find(params[:username])
end
end
而且我尝试使用 routes.rb 解决它,但无法做到......