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

  • SEARCH
  • Home
  • 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 6834229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:05:09+00:00 2026-05-26T23:05:09+00:00

i created a small rails application for learning which has 3 models : class

  • 0

i created a small rails application for learning which has 3 models :

class Resource < ActiveRecord::Base
  belongs_to :task
  belongs_to :user
end

class User < ActiveRecord::Base      
     has_many :resources
     has_many :tasks, :through=>:recources
end


class Task < ActiveRecord::Base
  has_many :resources, :dependent => :destroy
  has_many :comments, :dependent => :destroy
  has_many :users, :through=>:resources

  accepts_nested_attributes_for :resources,:comments 

end

everything is ok – listing,creating etc. But i wanna make a view which user upload a text file that contains tasks (it is not important how i can read text file) so i read the file and fetch the tasks. I created a controller which name is upload :

class UploadController < ApplicationController
  def index
  end

  def upload
    flash[:notice]="Upload completed"
  end

end

and index view like this :

<% if flash[:notice] %>
   <p><%= flash[:notice] %></p>
<% end %>

<div class="upload">
  <p>Select a project file</p>
  <%= form_tag :controller=>:upload,:action => :upload,:method => :put do %>

  <%= file_field 'Project File',:file %>
  <%= submit_tag "Upload" %>

  <% end %>
</div>

when i press upload button it gives me “Missing template upload/uploa….”

How can i accomplish this action, give me advice plz.

Thanks

  • 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-05-26T23:05:09+00:00Added an answer on May 26, 2026 at 11:05 pm

    Every action tries to render a template with the same name as itself if you don’t specifically tell it what to render or redirect_to. So what you can do is this:

         render :nothing => true
    

    That should do what you want.

    Also, the documentation is decent with regard to what you can do with render

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

Sidebar

Related Questions

I have created a small application which opens,reads and creates Excel files. The app
I am learning about threading and multithreading..so i just created a small application in
I created a small WPF desktop application. I am thinking about how to make
A researcher has created a small simulation in MATLAB and we want to make
I have created a small flash CS4 project that has a few custom components
I have created a small application using Microsoft .NET. I don't have problems with
I have created a small chatting application in C#, and started as a Console
The organization I work for has created a small flash widget that we're encouraging
We're running a small web application written JRuby on Rails running under Tomcat. We're
I've created a small user control consisting of a button whose content is an

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.