Ruby 데이터베이스에 추가

Smiaro

저는 Ruby를 처음 사용하고 학교 프로젝트를 완료해야합니다. 우리가 14 명으로 하나의 프로젝트를 만들었 기 때문에 문제가 있습니다. 나는 새로운 약속을 만들어야하는데 누군가 이것을 전에 사용했고 나는 이것을 다시 사용할 수 없습니다 (나는 이것을 간단한 양식에서 추가하고 싶습니다). 지금 막혔 기 때문에 도와주세요. 다른 사람의 코드를 변경하고 싶지 않습니다. new51.html.erb에서 _form51.html.erb를 렌더링합니다. 간단한 리디렉션을 사용하여 create51?;>하지만 방법을 모르겠습니다; (

수정 됨 : 이제 해결되었지만 앱이 항상 빈 약속을 만드는 이유는 무엇입니까?

Routes.rb :

ZOZ::Application.routes.draw do

  resources :refferals do
    collection do
        get 'new51' 
    end
     member do
        get 'show'
  end
  end

  resources :appointments do 
    collection do
        get 'search' #17
        get 'search_result' #17
        get 'to_confirm' #17
        get 'search_not' #57
        get 'search_result_not' #57
        get 'add_or_edit_not' #57
        get 'searchdate'
        get 'searchd'
        get 'move'
        get 'new51'
        post :create51
    end
    member do
        put :confirm #17
        put :update_not #57
        get 'show51'
    end
  end

  resources :clinics do
  collection do 
        get 'index51'
    end
  member do
        get 'show51s'
  end
  end


  resources :doctors do
    collection do 
        get 'index51a'
        get 'index51'
        get 'search54'
        get 'search_result54'
        get 'show_harmonogram'
    end
    member do
        get 'show51s'
        get 'show51ss'
    end
  end


    resources :patients do
    collection do 
        get 'select51'
        get 'index51'
    end
    member do
        get 'show51s'
        get 'show51ss'
    end
  end

  get "welcome/index2"
  get "welcome/index"

  get 'appointments/create'
  get 'appointments/move' => 'appointments#move'
  post 'appointments/move' => 'appointments#doctors_list'
  get 'appointments/move/:id' => 'appointments#doctor_appointments', as: :doctor_appointments
  get 'appointments/change_appointment/:id' => 'appointments#change_appointment', as: :change_appointment
  get 'appointments/change_doctor_and_appointment/:id' => 'appointments#change_doctor_and_appointment', as: :change_doctor_and_appointment
  get 'appointments/success' => 'appointments#success'

  # The priority is based upon order of creation:
  # first created -> highest priority.

  # Sample of regular route:
  #   match 'products/:id' => 'catalog#view'
  # Keep in mind you can assign values other than :controller and :action

  # Sample of named route:
  #   match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
  # This route can be invoked with purchase_url(:id => product.id)

  # Sample resource route (maps HTTP verbs to controller actions automatically):


  # Sample resource route with options:
  #   resources :products do
  #     member do
  #       get 'short'
  #       post 'toggle'
  #     end
  #
  #     collection do
  #       get 'sold'
  #     end
  #   end

  # Sample resource route with sub-resources:
  #   resources :products do
  #     resources :comments, :sales
  #     resource :seller
  #   end

  # Sample resource route with more complex sub-resources
  #   resources :products do
  #     resources :comments
  #     resources :sales do
  #       get 'recent', :on => :collection
  #     end
  #   end

  # Sample resource route within a namespace:
  #   namespace :admin do
  #     # Directs /admin/products/* to Admin::ProductsController
  #     # (app/controllers/admin/products_controller.rb)
  #     resources :products
  #   end

  # You can have the root of your site routed with "root"
  # just remember to delete public/index.html.
  root :to => 'welcome#index'

  # See how all your routes lay out with "rake routes"

  # This is a legacy wild controller route that's not recommended for RESTful applications.
  # Note: This route will make all actions in every controller accessible via GET requests.
  # match ':controller(/:action(/:id))(.:format)'
end

_form51.html.erb :

<%= form_for(@appointment) do |f| %>
  <% if @appointment.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@appointment.errors.count, "error") %> prohibited this appointment from being saved:</h2>

      <ul>
      <% @appointment.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :data_godzina_wizyty %><br />
  <%=
    options = { start_year: 2.year.from_now.year,
                end_year: 2013,
                include_blank: true,
                default: nil }
    f.datetime_select :data_godzina_wizyty, options
  %>
  <!--<input type="text" data-behaviour='datepicker' :data_wizyty > -->
  </div>
  <div class="field">
    <%= f.hidden_field :doctor_id, :value => Doctor.find(session[:current_doctor_id2]).id %>
  </div>
  <div class="field">
    <%= f.hidden_field :patient_id, :value => Patient.find(session[:current_patient_id]).id %>
  </div>
  <div class="actions">
    <%= submit_tag "Utworz wizyte" %>
  </div>
<% end %>

New51.html.erb :

<div id="container">
<center>
<h1>Nowa wizyta:</h1>
<p>Sprawdz poprawnosc ponizszych danych a nastepnie uzupelnij formularz.</p>

<h3>Dane lekarza:</h3> 
<p>
  <strong>Imię lekarza:</strong>
   <%= Doctor.find(session[:current_doctor_id2]).imie_lekarza %>
</p>

<p>
  <strong>Nazwisko lekarza:</strong>
   <%= Doctor.find(session[:current_doctor_id2]).nazwisko_lekarza %>
</p>
<p>
  <strong>Specjalizacja lekarza:</strong>
   <%= Doctor.find(session[:current_doctor_id2]).specjalizacja %>
</p>
<h3>Dane pacjenta:</h3> 
<p>
  <strong>Imie:</strong>
   <%= Patient.find(session[:current_patient_id]).imie %>
</p>
<p>
  <strong>Nazwisko:</strong>
  <%= Patient.find(session[:current_patient_id]).nazwisko %>
</p>
<p>
  <strong>Pesel:</strong>
  <%= Patient.find(session[:current_patient_id]).pesel %>
</p>
<%= render 'form51' %>

<%= link_to 'Wybierz innego lekarza', index51_doctors_path %>
</br>
</center>
</div>

Appointments_Controller :

class AppointmentsController < ApplicationController
  before_filter :load_appointment, only: [:show, :update, :edit, :destroy]
  before_filter :load_wizard, only: [:new, :edit, :create]



   def searchd
  end

    def move
    end

  def doctors_list
    @doctors = Doctor.where("imie_lekarza like ? or nazwisko_lekarza LIKE ? or specjalizacja LIKE ?", "%#{params[:search]}%", "%#{params[:search]}%", "%#{params[:search]}%")
  end

  def doctor_appointments
    @doctor = Doctor.find(params[:id])
    @appointments = @doctor.appointments
  end

  def change_appointment
    @appointment = Appointment.find(params[:id])
  end

  def change_doctor_and_appointment
    @doctors = Doctor.all
    @appointment = Appointment.find(params[:id])
  end

  def success
    @notice = flash[:notice]
  end

  def searchdate
    d = params[:date]
    data = Date.new(d["(1i)"].to_i, d["(2i)"].to_i, d["(3i)"].to_i)
    @appointments = Appointment.scoped 
    @appointments = @appointments.where(:data_godzina_wizyty => data.beginning_of_day..data.end_of_day)
  end


  def search_not
  end 

  def search_result_not

    #pacjent
    @patients = Patient.scoped
    @patients = @patients.where(pesel: params[:pesel])

    d = params[:date]
    if d["(1i)"] != "" and d["(2i)"]. != "" and d["(3i)"] != ""
        data = Date.new(d["(1i)"].to_i, d["(2i)"].to_i, d["(3i)"].to_i)
        @appointments = @patients.first.appointments.where(:data_godzina_wizyty => data.beginning_of_day..data.end_of_day)
    else
        @appointments = @patients.first.appointments
    end

  end

  def add_or_edit_not
    session['last_search_not'] = request.env["HTTP_REFERER"]
    @appointment = Appointment.find(params[:id])
    @patient = Patient.find(@appointment.patient_id)
    if @appointment.doctor_id != nil
        @doctor = Doctor.find(@appointment.doctor_id)
    end
    if @appointment.refferal_id != nil
        @refferal = Refferal.find(@appointment.refferal_id)
    end
  end

  def update_not
    @appointment = Appointment.find(params[:id])
    @appointment.notatka = params[:notatka]
    if @appointment.save
      redirect_to session[:last_search_not], notice: 'Notatka zostala zapisana.'
    else
      redirect_to :back, notice: 'Niestety wystapil blad. Prosze sprubowac pozniej'
    end
  end


  def search
  end


  def new51
    @appointment = Appointment.new

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @appointment }
    end
  end

  def create51
    @appointment = Appointment.new(params[:patient])

    respond_to do |format|
      if @appointment.save
        format.html { redirect_to @appointment, notice: 'Szczegoy wizyty pomyslnie zmodyfikowane!' }
        format.json { render json: @appointment, status: :created, location: @appointment }
      else
        format.html { render action: "new" }
        format.json { render json: @appointment.errors, status: :unprocessable_entity }
      end
    end
  end

  def search_result
    d = params[:date]
    data = Date.new(d["(1i)"].to_i, d["(2i)"].to_i, d["(3i)"].to_i)
  #szukanie pacjenta
    @patients = Patient.scoped
    @patients = @patients.where(pesel: params[:pesel])

  if params[:imie] != ""
      @patients = @patients.where(imie: params[:imie])
   end

   if params[:nazwisko] != ""
      @patients = @patients.where(nazwisko: params[:nazwisko])
   end
   #szukanie doctora
   opcja = 0
   @doctors = Doctor.scoped
  if params[:imie_lekarza] != ""
      @doctors = @doctors.where(imie_lekarza: params[:imie_lekarza])
      opcja = 1
   end

   if params[:nazwisko_lekarza] != ""
      @doctors = @doctors.where(nazwisko_lekarza: params[:nazwisko_lekarza])
      opcja = 1
   end
   #zlaczenie
    @patient_appo = @patients.first.appointments.where(:data_godzina_wizyty => data.beginning_of_day..data.end_of_day, potwierdzona: false)
   if opcja == 1
        @doctors_appo = @doctors.first.appointments.where(:data_godzina_wizyty => data.beginning_of_day..data.end_of_day, potwierdzona: false)
        @appointments = @patient_appo & @doctors_appo
    else
        @appointments = @patient_appo
   end
  end

  def to_confirm
    session['last_search'] = request.env["HTTP_REFERER"]
    @appointment = Appointment.find(params[:id])
    @patient = Patient.find(@appointment.patient_id)
    if @appointment.doctor_id != nil
        @doctor = Doctor.find(@appointment.doctor_id)
    end
    if @appointment.refferal_id != nil
        @refferal = Refferal.find(@appointment.refferal_id)
    end
  end

  def confirm
    @appointment = Appointment.find(params[:id])
    @appointment.potwierdzona = true
    if @appointment.save
      #redirect_to :back, notice: 'Rejestracja zostala pomyslnie potwierdzona.'
      redirect_to session[:last_search], notice: 'Rejestracja zostala pomyslnie potwierdzona.'
    else
      redirect_to :back, notice: 'Niestety wystapil blad. Prosze sprubowac pozniej'
    end
  end

  def index
    @appointments = Appointment.all
  end

  def show
  end

  def new
    @appointment = @wizard.object
    @clinics = Clinic.all
    @doctors = Doctor.all
  end

  public
  def findDoctorViaClinic( clinic )
    return( (Clinic.find(  clinic   )).doctors.uniq )
  end
  helper_method :findDoctorViaClinic

  def findScheduleViaDoctor(d)
    s = Schedule.includes(:doctors_workplace).where(doctors_workplace_id: (DoctorsWorkplace.includes(:doctor).where(doctor_id: d)) ).where(taken: 0) 
    return s
  end
    helper_method :findScheduleViaDoctor


  def edit
  end

  def create
    @appointment = @wizard.object
    if @wizard.save 
     s = ( Schedule.find( @appointment.schedule.id ) )
     s.taken = true
     s.save
      redirect_to @appointment, notice: "Appointment saved!"
    else
      render :new
    end
  end

  def update
#    if @wizard.save
#      redirect_to @appointment, notice: 'Appointment was successfully updated.'
#    else
#      render action: 'edit'
#    end

    @appointment = Appointment.find(params[:id])
    @old_appointment = @appointment.dup
    respond_to do |format|
      if @appointment.update_attributes(params[:appointment])
        DefaultMailer.move_appointment(@appointment, @old_appointment).deliver
        format.html { redirect_to appointments_success_path, notice: 'Pomyslnie zmieniono termin.' }
        format.json { head :no_content }
      else
        format.html { render action: "edit" }
        format.json { render json: @appointment.errors, status: :unprocessable_entity }
      end
    end

  end

  def destroy
    @appointment.destroy
    redirect_to appointments_url
  end

private

  def load_appointment
    @appointment = Appointment.find(params[:id])
  end

  def load_wizard
    @wizard = ModelWizard.new(@appointment || Appointment, session, params)
    if self.action_name.in? %w[new edit]
      @wizard.start
    elsif self.action_name.in? %w[create update]
      @wizard.process
    end
  end
end

로그 :

    Started POST "/appointments/create51" for 127.0.0.1 at 2014-06-22 08:22:53 +0200
    Processing by AppointmentsController#create51 as HTML
      Parameters: {"utf8"=>"✓", "authenticity_token"=>"kMxnErrH13opSkUPbg9hRM0Sy5JVwDCAbGRDNP5BSfc=", "appointment"=>{"data_godzina_wizyty(1i)"=>"2015", "data_godzina_wizyty(2i)"=>"1", "data_godzina_wizyty(3i)"=>"17", "data_godzina_wizyty(4i)"=>"16", "data_godzina_wizyty(5i)"=>"15", "doctor_id"=>"1", "patient_id"=>"1"}, "commit"=>"Utworz wizyte"}
      [1m[35m (0.0ms)[0m  begin transaction
      [1m[36mSQL (2.0ms)[0m  [1mINSERT INTO "appointments" ("clinic_id", "created_at", "data_godzina_wizyty", "data_wizyty", "doctor_id", "godzina_wizyty", "notatka", "objawy_choroby", "patient_id", "potwierdzona", "refferal_id", "schedule_id", "updated_at", "wymaga_Potwierdzenia") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m  [["clinic_id", nil], ["created_at", Sun, 22 Jun 2014 06:22:53 UTC +00:00], ["data_godzina_wizyty", nil], ["data_wizyty", nil], ["doctor_id", nil], ["godzina_wizyty", nil], ["notatka", nil], ["objawy_choroby", nil], ["patient_id", nil], ["potwierdzona", nil], ["refferal_id", nil], ["schedule_id", nil], ["updated_at", Sun, 22 Jun 2014 06:22:53 UTC +00:00], ["wymaga_Potwierdzenia", nil]]
      [1m[35m (13.0ms)[0m  commit transaction
    Redirected to http://localhost:3000/appointments/30
    Completed 302 Found in 23.0ms (ActiveRecord: 15.0ms)


Started GET "/appointments/new51" for 127.0.0.1 at 2014-06-22 08:22:42 +0200
Processing by AppointmentsController#new51 as HTML
  [1m[35mDoctor Load (1.0ms)[0m  SELECT "doctors".* FROM "doctors" WHERE "doctors"."id" = ? LIMIT 1  [["id", 1]]
  [1m[36mCACHE (0.0ms)[0m  [1mSELECT "doctors".* FROM "doctors" WHERE "doctors"."id" = ? LIMIT 1[0m  [["id", 1]]
  [1m[35mCACHE (0.0ms)[0m  SELECT "doctors".* FROM "doctors" WHERE "doctors"."id" = ? LIMIT 1  [["id", 1]]
  [1m[36mPatient Load (0.0ms)[0m  [1mSELECT "patients".* FROM "patients" WHERE "patients"."id" = ? LIMIT 1[0m  [["id", 1]]
  [1m[35mCACHE (0.0ms)[0m  SELECT "patients".* FROM "patients" WHERE "patients"."id" = ? LIMIT 1  [["id", 1]]
  [1m[36mCACHE (0.0ms)[0m  [1mSELECT "patients".* FROM "patients" WHERE "patients"."id" = ? LIMIT 1[0m  [["id", 1]]
  [1m[35mCACHE (0.0ms)[0m  SELECT "doctors".* FROM "doctors" WHERE "doctors"."id" = ? LIMIT 1  [["id", 1]]
  [1m[36mCACHE (0.0ms)[0m  [1mSELECT "patients".* FROM "patients" WHERE "patients"."id" = ? LIMIT 1[0m  [["id", 1]]
  Rendered appointments/_form51.html.erb (13.0ms)
  Rendered appointments/new51.html.erb within layouts/application (22.0ms)
  Rendered welcome/_form.html.erb (1.0ms)
Completed 200 OK in 103.0ms (Views: 100.9ms | ActiveRecord: 1.0ms)

    Started GET "/appointments/30" for 127.0.0.1 at 2014-06-22 08:22:53 +0200
    Processing by AppointmentsController#show as HTML
      Parameters: {"id"=>"30"}
      [1m[36mAppointment Load (0.0ms)[0m  [1mSELECT "appointments".* FROM "appointments" WHERE "appointments"."id" = ? LIMIT 1[0m  [["id", "30"]]
      Rendered appointments/show.html.erb within layouts/application (2.0ms)
      Rendered welcome/_form.html.erb (1.0ms)
    Completed 200 OK in 80.0ms (Views: 77.0ms | ActiveRecord: 0.0ms)
리처드 펙

노선

와, 경로가 정말 습합니다

당신은 정말 위로 읽을 필요가 수완 라우팅 - 당신은 당신에있는 모든 경로 routes파일은 정말 특별한 연관 될 필요가 controller(떨어져에서 root to다른 와일드 카드)

경로 파일을 작성한 사람은 엄청난 수의 특정 작업을 담았습니다. 솔직히, 그것은 엉망이며 거기에있는 사용자 지정 작업을 통해 제거하고 제거하는 것이 좋습니다.

리소스가 풍부한 라우팅은 Rails 문서에 다음 과 같이 설명 되어 있습니다.

여기에 이미지 설명 입력

결론은 특정 레코드에 대한 경로를 생성해서는 안된다는 것입니다. 응용 프로그램이 가질 다양한 프로세스를 처리 시스템 을 만들어야합니다.

-

형태

DB에 생성 된 객체가 표시되지 않는 경우 여러 문제가있을 수 있습니다. 그러나 가장 큰 @instance variable것은 부분에서 사용하는 것 입니다.

내가 아는 한 부분은 @instance variables렌더링 프로세스로 이어지지 않습니다 . 지역 변수 를 전달해야 합니다 .

#new.html.erb
<%= render "form51", locals: { appointment: @appointment } %>

#_form51.html.erb
<%= form_for appointment do |f| %>
   ...
<% end %>

-

솔직히,이 문제를 해결해야 할 것이 너무 많습니다. 여기 댓글에 도움을 요청하는 것이 가장 좋을 것입니다. 수정해야 할 사항을 정확히 지적 할 수 있습니다.

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

Ruby on Rails : 데이터베이스의 각 값에 대한 확인란 추가

분류에서Dev

Ruby on Rails : 기존 모델의 데이터베이스에 매개 변수를 추가하는 방법

분류에서Dev

데이터베이스에서 모든 n 레코드 가져 오기-Ruby on Rails

분류에서Dev

Ruby에서 데이터베이스 반복 색인 가져 오기

분류에서Dev

Ruby-SQLite3, 데이터베이스에 ASCII가 아닌 문자열 삽입

분류에서Dev

원격 Oracle 데이터베이스에서 데이터를 가져 오는 방법 Ruby on Rails

분류에서Dev

JanusGraph 데이터베이스에 데이터 추가

분류에서Dev

Django : 데이터베이스에 JSON POST 데이터 추가

분류에서Dev

데이터베이스 PHP에 데이터 추가

분류에서Dev

데이터베이스에 데이터 추가 및 JSON 사용

분류에서Dev

MySQL 데이터베이스에 데이터 추가

분류에서Dev

Firebase 데이터베이스에 양식 데이터 추가

분류에서Dev

데이터 테이블에 현재 시간 추가 Ruby on Rails

분류에서Dev

Ruby의 특정 세부 정보가있는 데이터베이스에서 삭제

분류에서Dev

Ruby-on-Rails-관계가있는 데이터베이스 만들기?

분류에서Dev

Ruby를 사용하여 JSON 파일에 데이터 추가

분류에서Dev

데이터베이스에서 ListView에 이미지 추가

분류에서Dev

컨트롤러에서 캐시를 사용하여 데이터베이스 업데이트 정보를 추적하는 Ruby-on-rails

분류에서Dev

Ruby on Rails에서 PostgreSQL 데이터베이스와 함께 사용할 수있는 GUI 또는 시각적 인터페이스가 있습니까?

분류에서Dev

EF Core 데이터베이스에 중복 엔터티 추가

분류에서Dev

C # 데이터베이스에서 데이터 테이블에 열 추가

분류에서Dev

Microsoft Azure : 사용자 추가 및 데이터베이스에 매핑 + 데이터베이스 역할 추가

분류에서Dev

데이터베이스 테이블에 조합 제약 추가

분류에서Dev

Android 애플리케이션에 데이터베이스 추가

분류에서Dev

Oracle 데이터베이스에 이미지 추가

분류에서Dev

Dataframe이 MySQL 데이터베이스에 추가되지 않음

분류에서Dev

데이터베이스에 클래스 유형 추가

분류에서Dev

jquery ajax가 mysql 데이터베이스에 추가

분류에서Dev

데이터베이스 쿼리에 가짜 필드 값 추가

Related 관련 기사

  1. 1

    Ruby on Rails : 데이터베이스의 각 값에 대한 확인란 추가

  2. 2

    Ruby on Rails : 기존 모델의 데이터베이스에 매개 변수를 추가하는 방법

  3. 3

    데이터베이스에서 모든 n 레코드 가져 오기-Ruby on Rails

  4. 4

    Ruby에서 데이터베이스 반복 색인 가져 오기

  5. 5

    Ruby-SQLite3, 데이터베이스에 ASCII가 아닌 문자열 삽입

  6. 6

    원격 Oracle 데이터베이스에서 데이터를 가져 오는 방법 Ruby on Rails

  7. 7

    JanusGraph 데이터베이스에 데이터 추가

  8. 8

    Django : 데이터베이스에 JSON POST 데이터 추가

  9. 9

    데이터베이스 PHP에 데이터 추가

  10. 10

    데이터베이스에 데이터 추가 및 JSON 사용

  11. 11

    MySQL 데이터베이스에 데이터 추가

  12. 12

    Firebase 데이터베이스에 양식 데이터 추가

  13. 13

    데이터 테이블에 현재 시간 추가 Ruby on Rails

  14. 14

    Ruby의 특정 세부 정보가있는 데이터베이스에서 삭제

  15. 15

    Ruby-on-Rails-관계가있는 데이터베이스 만들기?

  16. 16

    Ruby를 사용하여 JSON 파일에 데이터 추가

  17. 17

    데이터베이스에서 ListView에 이미지 추가

  18. 18

    컨트롤러에서 캐시를 사용하여 데이터베이스 업데이트 정보를 추적하는 Ruby-on-rails

  19. 19

    Ruby on Rails에서 PostgreSQL 데이터베이스와 함께 사용할 수있는 GUI 또는 시각적 인터페이스가 있습니까?

  20. 20

    EF Core 데이터베이스에 중복 엔터티 추가

  21. 21

    C # 데이터베이스에서 데이터 테이블에 열 추가

  22. 22

    Microsoft Azure : 사용자 추가 및 데이터베이스에 매핑 + 데이터베이스 역할 추가

  23. 23

    데이터베이스 테이블에 조합 제약 추가

  24. 24

    Android 애플리케이션에 데이터베이스 추가

  25. 25

    Oracle 데이터베이스에 이미지 추가

  26. 26

    Dataframe이 MySQL 데이터베이스에 추가되지 않음

  27. 27

    데이터베이스에 클래스 유형 추가

  28. 28

    jquery ajax가 mysql 데이터베이스에 추가

  29. 29

    데이터베이스 쿼리에 가짜 필드 값 추가

뜨겁다태그

보관