0
嘿傢伙! 如何可能使這樣的鏈接:http://localhost:3000/questiond_id=5&token=734893789568495
(將只有一個問題(形式)和令牌(唯一)爲他們和所有)URL中的軌道2.3.10
?在routers.rb中?或者在哪裏?
非常感謝!
嘿傢伙! 如何可能使這樣的鏈接:http://localhost:3000/questiond_id=5&token=734893789568495
(將只有一個問題(形式)和令牌(唯一)爲他們和所有)URL中的軌道2.3.10
?在routers.rb中?或者在哪裏?
非常感謝!
在Rails,你可以像這樣訪問:
http://localhost:3000/questions/5?token=734893789568495
在routes.rb中文件
resources :questions
您可以通過唯一的選擇限制這個,如果你不希望其他行動。
對於這一點,你可以使用問題控制器的表演動作,你的路會是這樣
question_path(:id => 5, :token => '734893789568495')