2013-05-10 2 views
0

레일즈 애플리케이션에서 컨트롤러 ticket_controller.rb와 모델 ticket.rb가 있습니다. 나는 다음과 같은 형태를 따른다 티켓,레일에서 제어기 내부의 모델 메소드에 액세스 할 수 없습니다.

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

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

    <%= f.label :ref_no, "Reference Number"%><br/> 
    <%= f.text_field :ref_no%><br /> 

    <%= f.label :category, "Type of Request"%><br/> 
    <%= f.text_field :category_id %><br /> 

    <%= f.label :issue, "Issue"%><br/> 
    <%= f.text_area :issue%><br /> 

    <%= f.label :ticket_priority, "Priority level"%><br/> 
    <%= f.text_field :ticket_priority_id %><br /> 

    <%= f.label :ticket_status, "Current Status"%><br/> 
    <%= f.text_field :ticket_status_id %><br /> 

    <%= f.label :project, "Project"%><br/> 
    <%= f.text_field :project_id %><br /> 

    <div class="actions"> 
    <%= f.submit %> 
    </div> 
<% end %> 

를 만드는 나는의 Form_Load (티켓/신규)에 고유 한 임의의 참조 번호를 만들려면, 그것은 참조 번호 텍스트 필드에 추가해야합니다. 새 참조 번호를 만드는 동안 티켓 테이블에서 중복을 확인해야합니다. 그래서 나는 다음과 같은 모델

ticket.rb이

class Ticket < ActiveRecord::Base 

    attr_accessible :issue, :ticket_status_id, :ticket_priority_id, :ref_no, :category_id, :project_id 
    has_many :ticket_statuses , :through => :ticket_histories 
    has_one :ticket_priority 
    belongs_to :user 

    before_create :generate_token 

    protected 


    def generate_num 
    self.token = loop do 
     random_token = random(1000000000) 
     break random_token unless Ticket.exists?(:ref_no => random_token) 
    end 
    end 

end 

tickets_controller.rb

class TicketsController < ApplicationController 
    before_filter :authenticate_user! 
    #load_and_authorize_resource 

    def index 
    @tickets = Ticket.all 

    respond_to do |format| 
     format.html # index.html.erb 
     format.json { render :json => @tickets } 
    end 
    end 


    def show 
    @ticket = Ticket.find(params[:id]) 

    respond_to do |format| 
     format.html # show.html.erb 
     format.json { render :json => @ticket } 
    end 
    end 


    def new 
    @ticket = Ticket.new 

    @ref_no = Ticket.generate_num 

    @categories = Category.all 
    @status = TicketStatus.first 
    @priorities = TicketPriority.all 
    respond_to do |format| 
     format.html # new.html.erb 
     format.json { render :json => @ticket } 
    end 
    end 


    def edit 
    @ticket = Ticket.find(params[:id]) 
    end 


    def create 
    @ticket = Ticket.new(params[:ticket]) 
    respond_to do |format| 
     if @ticket.save 
     format.html { redirect_to @ticket, :notice => 'Ticket was successfully created.' } 
     format.json { render :json => @ticket, :status => :created, :location => @ticket } 
     else 
     format.html { render :action => "new" } 
     format.json { render :json => @ticket.errors, :status => :unprocessable_entity } 
     end 
    end 
    end 

    def update 
    @ticket = Ticket.find(params[:id]) 

    respond_to do |format| 
     if @ticket.update_attributes(params[:ticket]) 
     format.html { redirect_to @ticket, :notice => 'Ticket was successfully updated.' } 
     format.json { head :no_content } 
     else 
     format.html { render :action => "edit" } 
     format.json { render :json => @ticket.errors, :status => :unprocessable_entity } 
     end 
    end 
    end 


    def destroy 
    @ticket = Ticket.find(params[:id]) 
    @ticket.destroy 

    respond_to do |format| 
     format.html { redirect_to tickets_url } 
     format.json { head :no_content } 
    end 
    end 
end 

내 응용 프로그램을 실행할 때, 나는 무엇입니까 다음 오류. 누구든지 도와 줄 수 있습니까?

NoMethodError in TicketsController#new 

undefined method `generate_num' for #<Class:0x7f5cdc1f21c0> 

Rails.root: /home/local/Rajesh/ticket_system 
Application Trace | Framework Trace | Full Trace 

app/controllers/tickets_controller.rb:27:in `new' 

답변

0

당신은 정의 및 인스턴스 메소드와 객체에게

@ticket.generate_num 
1

변경 모델 방법 generate_numself.generate_num에를 사용하여 클래스

통화 방법을 사용하여 요구하고있다.

def self.generate_num 
    token = loop do 
     random_token = random(1000000000) 
     break random_token unless Ticket.exists?(:ref_no => random_token) 
    end 
end 
+0

self.token에 오류가 있습니다. 정의되지 않은 메소드 "token =". 이게 뭐야? –

+0

그냥 self.token 대신 토큰을 사용하십시오. 그리고 무작위 (1000000000)는 내 끝에서 작동하지 않습니다. 동일한 문제가 발생하면 rand (1000000000)를 사용하십시오. – Deepika

관련 문제