当我打开一个新的寄存器视图时,我遇到了问题。 看一下错误:
undefined method `operadors_path' for #<#
<Class:0x0055dc5dc2ce48>:0x0055dc5dc177a0>
Did you mean? operadores_path
operadore_path
Rails抱怨这些行格式的代码:
<%= form_for(@operador) do |f| %>
<% if @operador.errors.any? %>
<div id="error_explanation">
<h2>Descobrimos <%= pluralize(@operador.errors.count, "erro") %> no preenchimento do formulário :(</h2>
我不明白这个错误,因为我没有在表单的代码中使用像operador_path这样的路径。
有人可以帮助我吗?
我的路线:
resources :operadores
我的表格:
<%= form_for(@operador) do |f| %>
<% if @operador.errors.any? %>
<div id="error_explanation">
<h2>Descobrimos <%= pluralize(@operador.errors.count, "erro") %> no preenchimento do formulário :(</h2>
<ul>
<% @operador.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :user %>
<%= f.text_field :user %>
</div>
</br>
<div class="field">
<%= f.label :senha %>
<%= f.text_field :senha %>
</div>
</br>
<div class="field">
<%= f.label :operador_tipo_id %>
<%= f.collection_select(:operador_tipo_id, @tipos_opstions_for_select, :id, :tipo) %>
</div>
</br>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
编辑2模型和控制器。
我的模特:
class Operador < ApplicationRecord
attr_accessor :password
#Relacionamento com o tipo de operador
belongs_to :operador_tipo, optional: true
#Validações
validates_confirmation_of :password
validates_length_of :password, :is => 8
validates_presence_of :password, :if => :password_required?
validates_presence_of :operador_tipo_id
#Callback para encriptação de senha antes de salvar no banco
before_save :encrypt_new_password
#Autenticação
#Procura e retorna o usuário se o usuario e senha estão corretos
def self.authenticate(user, password)
user = find_by_user(user)
return user if user && user.authenticated?(password)
end
#Verifica se a senha esta correta
def authenticated?(password)
self.hashed_password == encrypt(password)
end
######################### Bloco abaixo é protegido e só pode ser visto pela própria classe
protected
#Solicita a encriptação se a senha não estiver em branco
def encrypt_new_password
return if password.blank?
self.hashed_password = encrypt(password)
end
#Verifica se a senha esta em branco
def password_required?
hashed_password.blank? || password.present?
end
#Efetua a encriptação
def encrypt(string)
Digest::SHA1.hexdigest(string)
end
end
我的控制器:
class OperadoresController < ApplicationController
before_action :find, only: [:edit, :update, :destroy]
before_action :set_options_for_select, only: [:new, :edit, :update, :create]
def show
@operador = Operador.find(params[:user])
end
# GET /operadors/new
def new
@operador = Operador.new
end
def index
@operadores = Operador.all
end
# GET /operadors/1/edit
def edit
end
# POST /operadors
# POST /operadors.json
def create
@operador = Operador.new(operador_params)
@operador.valid?
respond_to do |format|
if @operador.save
format.html { redirect_to @operador, notice: 'Operador cadastrado com sucesso.' }
format.json { render :show, status: :created, location: @operador }
else
format.html { render :new }
format.json { render json: @operador.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /operadors/1
# PATCH/PUT /operadors/1.json
def update
respond_to do |format|
if @operador.update(operador_params)
format.html { redirect_to @operador, notice: 'Operador atualizado com sucesso.' }
format.json { render :show, status: :ok, location: @operador }
else
format.html { render :edit }
format.json { render json: @operador.errors, status: :unprocessable_entity }
end
end
end
# DELETE /operadors/1
# DELETE /operadors/1.json
def destroy
@operador.destroy
respond_to do |format|
format.html { redirect_to operadors_url, notice: 'Operador removido com sucesso.' }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def find
@operador = Operador.find(params[:id])
end
def set_options_for_select
@tipos_opstions_for_select = OperadorTipo.all
end
# Never trust parameters from the scary internet, only allow the white list through.
def operador_params
params.require(:operador).permit(:user, :password, :operador_tipo_id)
end
end
答案 0 :(得分:3)
您需要使用Operador
而不是operadors
更改operadores
路由的设置方式:
resources :operadors
您还需要更改控制器的文件名和类名:
应用/控制器/ operadors_controller.rb 强>
class OperadorsController < ApplicationController
# ...
end
这是因为rails默认使用复数形式的模型名称,但是这个自动复数仅适用于英语单词,对于任何其他单词,它只会在名称中添加s
(即operador
变为operadors
)。
因此,当您在@operador
中使用form_for
时,rails会使用上述复数形式查找帮助程序,即operadors_path
;但您的路线仅指定operadores
的帮助者,即operadores_path
或其单数形式operadore_path
(删除s
)。
答案 1 :(得分:3)
添加 @Gerry 的答案,如果您希望不更改 <?php
$cur_year = date("Y");
$next_year = $cur_year+1;
for($m=1; $m<=12; ++$m)
{
$monthName=date('F', mktime(0, 0, 0, $m, 1)).'';
$monthNumber=date('m', mktime(0, 0, 0, $m, 1)).'';
$nextmonth=$monthNumber+1;
if($nextmonth<10)
$nextmonth="0".$nextmonth; //will add 0 as prefix to the numbers below 10
echo "$monthName<br>";
echo "$cur_year-$monthNumber-01<br>";
if($nextmonth > 12)
{
$cur_year++; //current year +1 2017 to 2018
$nextmonth="01"; //start the month back to 01 or january
}
echo "$cur_year-$nextmonth-01<br><br>";
}
和routes
,您可以强制Rails 使用您定义的。您可以在controller
的帮助下完成此操作。将以下行放在inflections
config/initializers/inflections.rb
并重新启动服务器。