我有一个 Rails 3 应用程序,我想在我的一个模型中添加一个字段,该字段将被称为 localip。
如何将当前本地 IP 添加到该字段?
控制器中的标准创建方法是这样的:
# POST /prescriptions
# POST /prescriptions.json
def create
@prescription = Prescription.new(params[:prescription])
respond_to do |format|
if @prescription.save
format.html { redirect_to @prescription, notice: 'Prescription was successfully created.' }
format.json { render json: @prescription, status: :created, location: @prescription }
else
format.html { render action: "new" }
format.json { render json: @prescription.errors, status: :unprocessable_entity }
end
end
end
有没有使用 create 方法插入它的方法?