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 7979471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T09:47:23+00:00 2026-06-04T09:47:23+00:00

I have a form_tag on a Stream model which accepts user input as show

  • 0

I have a form_tag on a “Stream” model which accepts user input as show below:

<%= form_tag('/generate_xml', :method=>'post') do %>
 <p>
 Content:<br />
   <%= text_field_tag "content" %>
 </p>
 <p>
   <%= submit_tag 'Submit' %>
 </p>
<% end %>

The generate_xml action is as below:

def generate_xml
 @content = params[:content]
 builder = Nokogiri::XML::Builder.new do |xml|
 xml.streams {
  xml.content {
   xml.name { xml.text @content }
  }
 }
 end

 file = File.new('dir.xml','w')
 file.puts builder.to_xml
 file.close
end

While I can generate a file dir.xml I do not want this file to be stored locally but in the database directly.How can I do this? I so far have tried generating file-related columns in the “Stream” model(where I want to store the xml files) using paperclip but I stuck about how I can generate a file on the fly and save it to database.

  • 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-04T09:47:24+00:00Added an answer on June 4, 2026 at 9:47 am

    You could store the xml content as a string.

    So, do a rails migration to add the string column to your table.

    rails g model UserContent xml:string
    

    Then just store it as a string in there:

    uc = UserContent.create(:xml => builder.to_xml)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have a form_tag in a view gathering a view user input
I have this form tag below where the form submits to itself which I
I have a form_tag that submits a user's search remotely to a Rails controller
I have this form: in header of my website: <% form_tag request.path, :method =>
I have a remote_form which works 100% When a user clicks submit, it goes
I have a form with a checkboxes: -form_tag filter_path(@page.permalink), :method => 'get' do |f|
I have a form which contains some unique input fields and some others with
In my HTML code, I have a form tag that contains two input boxes,
I'm trying to put together a form_tag that edits several Shift objects. I have
I currently have this as a search: <%= form_tag users_path, :controller => 'users', :action

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.