2

私はこれを理解したり、どこでもこれに対する解決策を見つけることができないようです...私はそれがかなり一般的で単純だと感じているので、私には夢中です

ユーザーがフォームを介してリクエストを送信し、作成されたチケットを表示できる外部 API に送信されたときにクライアントに表示される小さなメッセージを追加したいと考えています。

だから今、私のクライアントは

 John Doe 

しかし、私は彼らに見てもらいたい

 Web inquiry from John Doe

そのため、フォームから「Web問い合わせ先」の部分を送信する必要があります

私はそれをフォームに補間しようとしました

 = f.text_field "Web inquiry from #{:subject}"

それはうまくいきませんでした

値を追加しようとしました(行きたい方法ではありませんが、とにかく試しました)

 = f.text_field :subject, value: "Web inquiry from #{f.object.subject}"

それもうまくいきませんでした

モデルに配置してみました

 def post_tickets(params)
   client.subject = "Hello from, " + client.subject
 end

私はレールに慣れていないので、できるだけ具体的に教えていただければ助かります...コントローラーでそれを行うだけだとは言わないでください.....上級者に感謝します

ここに私のフォームがあります

= form_for(:contacts, url: contacts_path) do |f|
= f.error_messages
= f.label :subject, "Name"
%span{style: 'color: red'} *
= f.text_field :subject, class: "text_field width_100_percent"
%br
%br    
= f.label "Email"
%span{style: 'color: red'} *
%br    
= f.email_field :email, class: "text_field width_100_percent"
%br
%br
= f.label "Question(s), and/or feedback"
%span{style: 'color: red'} *
%br
= f.text_area :description, class: "text_field width_100_percent", style: 'height: 100px;'
%br
%br
= f.submit "Submit", class: 'btn btn-warning'

これが私のコントローラーです

 class Website::ContactsController < Website::WebsiteApplicationController
   def new
     @contacts = Form.new
   end

   def create
     @contacts = Form.new(params[:contacts])
     @contacts.post_tickets(params[:contacts])
     if @contacts.valid?
       flash[:success] = "Message sent! Thank you for conacting us."
       redirect_to new_contact_path
     else
       flash[:alert] = "Please fill in the required fields"
       render action: 'new'
     end
   end
 end

ここに私のモデルがあります

 class Form
   include ActiveModel::Validations
   include ActiveModel::Conversion
   include ActiveModel::Translation
   extend  ActiveModel::Naming

   attr_accessor :config, :client, :subject, :email, :custom_field_phone_number_28445, 
            :custom_field_name_28445, :custom_field_company_28445, :description, 
            :custom_field

    validates_presence_of :subject, :message => '^Please enter your name'
    validates_presence_of :description, :message => '^Question(s), and/or feedback can not be blank'
    validates :email, presence: true  
    validates_format_of :email, :with => /^[-a-z0-9_+\.]+\@([-a-z0-9]+\.)+[a-z0-9]{2,4}$/i

    def initialize(attributes = {})
      attributes.each do |name, value|
        @attributes = attributes
      end

      self.config = YAML.load_file("#{Rails.root}/config/fresh_desk.yml")[Rails.env]
  self.client = Freshdesk.new(config[:url], config[:api_key], config[:password])
    end

    def read_attribute_for_validation(key)
      @attributes[key]
    end

    def post_tickets(params)
      client.post_tickets(params)
    end

    def persisted?
      false
    end
  end
4

1 に答える 1

1
def post_tickets(params)
  # prepend to the params['subject'] just before posting
  client.post_tickets "Web enquiry from #{params['subject']}"
end
于 2013-09-11T18:19:47.357 に答える