#html #ruby-on-rails-6
Вопрос:
У меня есть _form.html.erb. и в первой строке кода он выдает эту ошибку:
неопределенный метод `assessments_path’ для #ActionView::База:0x00000000229750 Вы имели в виду? путь к активу
пара моментов:
- в маршрутах «poweruser» — это пространство имен
- в оценке моделей.rb не является папкой poweruser (так как я планирую использовать ее для других страниц, доступ к которым может получить любой, а не только пользователи).
- Есть идеи, чего мне не хватает?
Вот код:
<%= form_with(model: [@assessment], local: true) do |form| %>
<%= render "shared/error_messages", resource: form.object %>
<div class="form-group">
<%= form.label :name %>
<%= form.text_field :name, class: "form-control" %>
</div>
<% end %>
Вот контроллер
module Powerusers
class AssessmentsController < ApplicationController
before_action :authenticate_user!
# before_action :set_assessment
# before_action :set_assessment, only: [:set_assessment, :show, :edit, :update, :destroy]
# Overwrite any of the RESTful controller actions to implement custom behavior
# For example, you may want to send an email after a foo is updated.
#
# def update
# super
# send_foo_updated_email(requested_resource)
# end
def index
@pagy, @assessments = pagy(Assessment.sort_by_params(params[:sort], sort_direction))
# We explicitly load the records to avoid triggering multiple DB calls in the views when checking if records exist and iterating over them.
# Calling @assessments.any? in the view will use the loaded records to check existence instead of making an extra DB call.
@assessments.load
end
# GET /assessments/new
def new
@assessment = Assessment.new
@assessment.assessment_sections.new
end
вот файл assessment.rb (его нет в подпапке poweruser)
class Assessment < ApplicationRecord
belongs_to :company
has_many :assessment_sections, inverse_of: :assessment
has_many :questions, through: :assessment_sections
accepts_nested_attributes_for :assessment_sections, reject_if: :all_blank,
allow_destroy: true
accepts_nested_attributes_for :questions, reject_if: :all_blank,
allow_destroy: true
end
Вот маршруты
# PowerUser
authenticated :user, lambda { |u| u.admin? } do
namespace :powerusers do
resources :assessments do
resources :assessment_sections do
resources :questions
end
end
end
end
Ответ №1:
Поскольку у вас есть пространство имен в маршрутах, вам необходимо указать это с помощью form_with
<%= form_with(model: [:powerusers, @assessment], local: true) do |form| %>
Комментарии:
1. большое спасибо за это. это сделало свое дело — теперь это работает.