0

この便利な例を使用して、Rails 3で連絡フォームを作成しています

フォームをメイン ページに配置しましたが、メッセージを送信しようとすると、ページが mysite.com ではなく mysite.com/contact にリダイレクトされます。ローカルでは問題なく動作しますが、Heroku にデプロイすると問題が発生します。問題はroutes.rbにあると思いますが、解決方法がわかりません。

ルート.rb

FirstApp::Application.routes.draw do
  root to: 'static_pages#home'

  match 'contact' => 'contact#new', as: 'contact', :via => :get
  match 'contact' => 'contact#create', as: 'contact', :via => :post
end

contact_controller.rb

class ContactController < ApplicationController

  def new
    @message = Message.new
  end

  def create
    @message = Message.new(params[:message])

    if @message.valid?
      NotificationsMailer.new_message(@message).deliver
      redirect_to(root_path, :notice => "Message was successfully sent.")
    else
      flash.now.alert = "Please fill all fields."
      render :new
    end
  end

end

メッセージ.rb

class Message

  include ActiveModel::Validations
  include ActiveModel::Conversion
  extend ActiveModel::Naming

  attr_accessor :name, :email, :subject, :body

  validates :name, :email, :subject, :body, :presence => true
  validates :email, :format => { :with => %r{.+@.+\..+} }, :allow_blank => true

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

  def persisted?
    false
  end

end

ありがとう!

4

0 に答える 0