0

我有一个产品脚手架设置,我刚刚创建了一个新的 foo 控制器和视图。在我的 foo 控制器中,我解析了一个 url,并取回了一组对象。如何将这些变量中的每一个作为默认值传递到产品表单中?

我的控制器:

     require 'net/http'
  require 'json'

def index
    if params[:commit] == "Add Product"
      @productId = params[:q]
      @resultsReceived = true
      if 
          url =  URI.parse("url" + params[:q].to_s)
          @response = JSON.parse(Net::HTTP.get_response(url).body)
      end
    else
      @resultsReceived = false
      @response = []
    end

     respond_to do |format|
        format.html
      end
end
end

我目前的索引

<%= form_tag("/foo", :method => "get") do %>
  <%= label_tag(:q, "Enter Product Number") %>
  <%= text_field_tag(:q) %>
  <%= submit_tag("Add Product") %>
<% end %>

    <% if @resultsReceived == true %>
        Title:   <%= @response["product"]["title"] %>   </br>
        ID_Str:   <%= @response["product"]["id_str"] %> </br>
        Image Url:  <%= @response["product"]["image_url"] %>    </br>
        Base Item Price:  <%= @response["product"]["base_item_price"] %>    </br>
        Current Item Price:  <%= @response["product"]["price"] %>   </br>
        Seller Name:  <%= @response["product"]["mp_seller_name"] %> </br>
        Description:    <%= @response["product"]["descr"] %>    </br>
    <% end %>

我希望将上面的变量传递给我已经存在的产品。

4

1 回答 1

0

我认为您必须将其他数据的访问权限从您的索引操作转移到您的新操作或您可能创建的“new_prefilled”操作。如果属性匹配会很有帮助(您从 url 获得的内容与您的产品型号具有相同的属性名称)

IE

def new_prefilled

  if url =  URI.parse("url" + params[:oid].to_s)
    @response = JSON.parse(Net::HTTP.get_response(url).body)
  end
  @product = Product.new(@response['product'])
  render 'new'
end

然后你必须添加一条路线,

get '/products/new/:oid' => 'products#new_prefilled'

然后在您的索引操作中,您将执行以下操作:

if params[:commit] == "Add Product"
  redirect_to "/products/new/#{params[:q]}"
end

So you would render your new products view, but it would be pre-filled with that data you got from the other site.

于 2012-05-18T20:01:56.620 回答