Админ Продукты Маршрутизация - PullRequest
2 голосов
/ 26 сентября 2011

Привет, надеюсь получить ответы на некоторые вопросы здесь.Я думал об этом снова и снова, это убивает меня.Хочу получить ответы сейчас, все, что я нашел, сложнее, чем моя маленькая система на данный момент.Ниже приведена информация.

Первый файл моих маршрутов:

get 'admin' => 'admin#index'
  namespace "admin" do
  resources :products
end

Мой Контроллер продуктов Admin выглядит следующим образом:

class Admin::ProductsController < ApplicationController
  # GET /products
  # GET /products.json
  def index
    @products = Product.all

    respond_to do |format|
     format.html # index.html.erb
     format.json { render json: @products }
   end
end

# GET /products/1
# GET /products/1.json
 def show
   @product = Product.find(params[:id])

   respond_to do |format|
     format.html # show.html.erb
     format.json { render json: @product }
   end
 end

 # GET /products/new
 # GET /products/new.json
  def new
    @product = Product.new

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @product }
    end
 end

 # GET /products/1/edit
 def edit
    @product = Product.find(params[:id])
 end

  # POST /products
  # POST /products.json
  def create
    @product = Product.new(params[:product])

    respond_to do |format|
     if @product.save
       format.html { redirect_to @product, notice: 'Product was successfully created.' }
       format.json { render json: @product, status: :created, location: @product }
     else
       format.html { render action: "new" }
       format.json { render json: @product.errors, status: :unprocessable_entity }
     end
    end
   end

   # PUT /products/1
   # PUT /products/1.json
   def update
     @product = Product.find(params[:id])

     respond_to do |format|
      if @product.update_attributes(params[:product])
       format.html { redirect_to @product, notice: 'Product was successfully updated.' }
        format.json { head :ok }
     else
        format.html { render action: "edit" }
        format.json { render json: @product.errors, status: :unprocessable_entity }
      end
     end
    end

    # DELETE /products/1
    # DELETE /products/1.json
     def destroy
      @product = Product.find(params[:id])
      @product.destroy

     respond_to do |format|
        format.html { redirect_to products_url }
        format.json { head :ok }
     end
    end
   end

Мои продукты администратора Просмотр файлов стандартен,вот _form, новые, индексные файлы:

    New:


    <%= render 'form' %>

       <%= link_to 'Back', admin_products_path %>

     _form:
      <%= form_for [:admin, @product] do |f| %>
      <% if @product.errors.any? %>
        <div id="error_explanation">
          <h2><%= pluralize(@product.errors.count, "error") %> prohibited this product     from being saved:</h2>

          <ul>
            <% @product.errors.full_messages.each do |msg| %>
            <li><%= msg %></li>
           <% end %>
          </ul>
          </div>
          <% end %>

         <div class="field">
          <%= f.label :title %><br />
          <%= f.text_field :title %>
         </div>
         <div class="field">
            <%= f.label :description %><br />
            <%= f.text_area :description, rows: 6 %>
          </div>
           <div class="field">
            <%= f.label :image_url %><br />
            <%= f.text_field :image_url %>
           </div>
            <div class="field">
              <%= f.label :price %><br />
              <%= f.text_field :price %>
            </div>
             <div class="actions">
             <%= f.submit %>
           </div>
           <% end %>

     Index:
     <h1>Admin Listing products</h1>
      <table>
    <% @products.each do |product| %>
    <tr class="<%= cycle('list_line_odd', 'list_line_even') %>">

    <td>
        <%= image_tag(product.image_url, class: 'list_image') %>
    </td>

    <td class="list_description">
    <dl>
        <dt><%= product.title %></dt>
        <dd><%= truncate(strip_tags(product.description),
                length: 80) %></dd>
    </dl>
    </td>

    <td class="list_actions">
        <%= link_to 'Edit', edit_admin_product_path(product) %><br/>
        <%= link_to 'Destroy', admin_product_path(product),
            confirm: 'Are you sure?',
            method: :delete %>
    </td>
    </tr>
<% end %>
</table>
<br />
<%= link_to 'New product', new_admin_product_path %>

Хорошо, я надеюсь, что это вся информация, которая необходима, чтобы помочь мне.

Это вопрос: если я пойду на localhost: 3000 / admin / products / new Я попал в форму для создания нового продукта.Однако, если я заполняю форму, я перехожу к следующему localhost: 3000 / product /: id.Я хочу, чтобы он перенаправлял на admin / products.

Я постоянно говорю себе, что это должен быть redirect_to в процедуре "create" на контроллере продуктов администратора, но все перепробовал, и он не работает ....Пожалуйста, помогите, это убить меня LOL

Ответы [ 2 ]

1 голос
/ 29 сентября 2011

JUst перенаправить на ваш индекс действий вместо показа продукта. Это также относится к вашему действию обновления, если вы вообще хотите, чтобы пользователь перенаправлялся на страницу индекса, если он обновляет продукт. Просто измените redirect_to @product на redirect_to :action => 'index'.

0 голосов
/ 02 октября 2011

Это не сработало, но вот пошаговое руководство.http://icebergist.com/posts/restful-admin-namespaced-controller-using-scaffolding

...