Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8630921
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T09:08:38+00:00 2026-06-12T09:08:38+00:00

Hi I’m trying to use a form as a partial for both the new/edit

  • 0

Hi I’m trying to use a form as a partial for both the new/edit views of my albums controller/model. However, it’s giving me the error when I try to edit the album:

No route matches [PUT] "/users/22/albums"

I think this might have to do with my form’s :url. My form works fine when I submit it to create an album, but gets that error when I try to edit it.

I tried taking out the url: user_albums_path in my form, but it would just give me an error when I try to create a new album.

No route matches [POST] "/albums"

Is there any way to make it so that the form works for both actions? I feel like the :url can’t coexist properly in both actions.

_form.html.erb

<%= form_for (@album), url: user_albums_path, :html => { :id => "uploadform", :multipart => true } do |f| %>
<div class="formholder">
    <%= f.label :name %>
    <%= f.text_field :name %>


    <%= f.label :description %>
    <%= f.text_area :description %>

    <br>

    <%=f.submit %>
</div>
<% end %>

albums controller

class AlbumsController < ApplicationController

def index
  @user = User.find(params[:user_id])
  @albums = @user.albums.all

  respond_to do |format|
    format.html
    format.json { render json: @albums }
  end
end

def show
  @user = User.find(params[:user_id])
  @album = @user.albums.find(params[:id])
end

def update
  @user = User.find(params[:user_id])
  @album = @user.albums.find(params[:id])
  respond_to do |format|
    if @album.update_attributes(params[:album])
      format.html { redirect_to user_album_path(@user, @album), notice: 'Album successfully updated' }
    else
      format.html { render 'edit' }
    end
  end
end

def edit
  @user = User.find(params[:user_id])
  @album = @user.albums.find(params[:id])
end

def create
  @user = User.find(params[:user_id])
  @album = @user.albums.build(params[:album])
  respond_to do |format|
    if @user.save
      format.html { redirect_to user_album_path(@user, @album), notice: 'Album was successfully created.' }
      format.json { render json: @album, status: :created, location: @album}
    else
      format.html { render action: "new" }
      format.json { render json: @album.errors, status: :unprocessable_entity }
    end
  end 
end

def new
  @user = User.find(params[:user_id])
  @album = Album.new
end

def destroy
end

end

please help!

update:

FIXED IT! on my own! the form just needed to be <%= form_for([@user, @album])...

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T09:08:39+00:00Added an answer on June 12, 2026 at 9:08 am

    Try

    <%= form_for [@user, @album] %> 
    # other arguments can be inserted before the closing brace
    

    That syntax properly scopes the resource routes

    Remember to have an @album instance variable if you need one. You can build an empty album using @user.album.build

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to understand how to use SyndicationItem to display feed which is
I want use html5's new tag to play a wav file (currently only supported
I'm trying to use string.replace('’','') to replace the dreaded weird single-quote character: ’ (aka
Basically, what I'm trying to create is a page of div tags, each has
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am trying to render a haml file in a javascript response like so:
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to select an H1 element which is the second-child in its group

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.