私はRORの初心者です。データベースの値の保存と取得に関して助けが必要です
私のコントローラークラスはdemo_controller.rb
次のとおりで、クラスコードは次のとおりです..
class DemoController < ApplicationController
def user
end
end
私のモデルにはクラスuser.rb
があり、以下はクラスコードです...
class User < ActiveRecord::Base
# attr_accessible :title, :body
attr_accessible :first_name, :last_name, :email, :password
end
という名前のビューにuser.html.erb
は、ブラウザに表示する次のコードがあります...
<h1>Create User</h1>
<div class="control-group">
<label class="control-label">First Name</label>
<div class="controls">
<input type="text" name="f_name" placeholder="Enter your first Name...">
</div>
</div>
</br>
<div class="control-group">
<label class="control-label">last Name</label>
<div class="controls">
<input type="text" name="l_name" placeholder="Enter your last Name...">
</div>
</div>
</br>
<div class="control-group">
<label class="control-label">Email address</label>
<div class="controls">
<input type="text" name="email" placeholder="Enter your Email address...">
</div>
</div>
</br>
<div class="control-group">
<label class="control-label">Password</label>
<div class="controls">
<input type="text" name="password" placeholder="Enter your Password...">
</div>
</div>
</br>
</br>
</br>
<button class="btn" type="submit">Add Info</button>
<button class="btn" type="reset" >Reset</button>
user
テーブル名とテーブルのフィールドを持つデータベースを作成しました
first_name
last_name
email
password
値をデータベースに保存し、データベースからブラウザに取得したいのですが、多くの方法を試したので、実装に適したものが見つかりませんでした。その方法を教えてください..ありがとう!