在我的应用中,我有一个称为个人资料的视图。在此视图上,用户可以更新您的相册以及这些相册的照片。
一个用户有很多相册。相册中有很多照片。
我正在个人资料视图中创建一个表单来保存相册。像这样:
#routes.rb
get '/profile/edit/profile_albums', to: 'profiles#edit_profile_albums'
#/view/profile/edit/profile_albums.html.erb
<%= form_for album do |f| %>
<div class="dialog dialog-centered" id=<%= album.id %> style="display: block;">
<div class="dialog-container dialog-wide">
<div class="dialog-content panel">
<div class="form-group bottom-7">
<label for="">Album Name</label>
<input type="text" id="" value=<%= album.name %> placeholder="Add Album Name">
</div>
<div class="edit-photo-album bottom-5">
<% album.photos.each do |photo| %>
<span class="edit-photo">
<img src="<%= asset_path ix_refile_image_url(photo, :media, fit: 'fill', bg: '0fff') %>" class="photo-preview">
<a href="" title="Remove" class="remove-item">Remove</a>
</span>
<% end %>
<span class="btn btn-default btn-file">
<i ></i> Upload Photos
<%= f.attachment_field :photos_media, multiple: true, direct: true, presigned: true %>
</span>
</div><!-- end photo album -->
<p>
<div class="actions">
<%= f.submit 'Save Album', class: 'btn btn-lg btn-solid-red btn-margin-right' %>
</div>
<button type="button" class="btn btn-lg btn-outline-green dialog-close">Cancel</button>
</p>
</div><!-- end dialog content -->
</div><!-- end dialog container -->
</div>
<% end %>
当我按下保存按钮时:
<%= f.submit 'Save Album', class: 'btn btn-lg btn-solid-red btn-margin-right' %>
我收到此消息:
Routing Error
No route matches [PATCH] "/profile/edit/albums"
有人可以帮助我吗?
谢谢
答案 0 :(得分:3)
我认为您需要在url
中指定form_for
。
首先使用rake routes
,检查应将此表格发送到的路线,然后将您的form for
修改为:
<%= form_for album, url: edit_profile_albums_path do |f| %>
只需将edit_profile_albums
替换为运行rake routes
时获得的路径即可。
答案 1 :(得分:1)
错误提示,您需要添加正确的路由才能使表单正常工作。在这种情况下,可能是resources :albums
中的routes.rb
。我建议您仔细阅读本指南(易于阅读):https://guides.rubyonrails.org/routing.html