我是新來的Rails中插入數據庫記錄,我想學習這種技術,所以請原諒如果問題是愚蠢的。的Rails 3:如何使用Rails
我使用Rails 3。
請讓我知道我可以在數據庫中插入一條記錄。
我uisng PostgreSQL和下面是我對學生表的表結構。
SELECT column_name FROM information_schema.columns WHERE table_name ='Students';
column_name
-------------
id
name
age
description
(4 rows)
這是我的控制器文件student_controller.rb
class StudentController < ApplicationController
def new
end
end
這是我的模型文件student.rb
class Student < ActiveRecord::Base
end
這是在我的視圖文件\應用\ views \ student \ new.html.erb
<h1>BookController#new</h1>
<form>
Id: <input type="text" name="id" /><br />
Last Name: <input type="text" name="lastname" />
Age: <input type="text" name="age" />
Desciption: <input type="text" name="description" />
</form>
當我訪問http://localhost:3000/student/new
請讓我知道我可以在數據庫中插入一條記錄?你應該使用的
作爲答案將是非常大的顯示完整的程序,請按照Rails入門。它將幫助您瞭解Rails如何工作。 http://guides.rubyonrails.org/getting_started.html – HungryCoder
@Preethi Jain:有什麼幫助你嗎? – Samiron