0

こんにちは皆さん、私はRuby on Railsの初心者です...製品ページを追加しましたが、1つのカテゴリの下に重複した製品名があるかどうかを知りたいです。たとえば、「製品名:テスト」、「カテゴリ:その他」、「製品名はすでに存在する別のものを選択してください。」ただし、「製品名: テスト」、「カテゴリ: ショップ アンド ドロップ」などのようにカテゴリを変更すると、新しい製品が保存されます。

ここに私のフォームのコードがあります: Add new products

<% content_for :post_content do %>
    <div class="post">
        <% form_for :product, @product do | fld | %>
        <span class="notice"><% if @product.errors.any? %><p class="error"><%= @product.errors.first[1] %></p><% end %></span>
        <table class="tbl-form" cellpadding="0" cellspacing="0">
            <tbody>
                <tr>
                    <td class="name" width="100">Code:</td>
                    <td colspan="99"><%= fld.text_field :product_code, :class => "large" %></td>
                </tr>
                <tr height="5"/>
                <tr>
                    <td class="name" width="100">Name:</td>
                    <td colspan="99"><%= fld.text_field :name, :class => "large" %></td>
                </tr>
                <tr height="5"/>
                <tr>
                    <td class="name" width="100">Start Week:</td>
                    <td colspan="99"><%= fld.select :start_week, options_for_select(StockMovement.order("year DESC, week DESC").map { | val | [ "#{ val.year }/#{ val.week }", val.id] }, :selected => @product.start_week), :class => "ddl_SW" %></td>
                </tr>
                <tr height="5"/>
                <tr>
                    <td class="name" width="100">Category:</td>
                    <td colspan="99"><%= fld.select :product_category, options_for_select(ProductCategory.where("jos_product_category.published = 1").all.map { | val | [ val.name, val.id] }, :selected => @product.product_category)%></td>
                </tr>
                <tr height="5"/>
                <tr>
                    <td class="name">Thumbnail:</td>
                    <td colspan="99"><%= fld.text_field :thumbnail, :class => "large" %></td>
                </tr>
                <tr height="5"/>
                <tr>
                    <td class="name">Original Image:</td>
                    <td colspan="99"><%= fld.text_field :original_image, :class => "large" %></td>
                </tr>
                <tr height="5"/>
                <tr><td class="name">Publish:</td><td><span id="yesno"><%= fld.check_box :published, :class => "hide-chk" %><a id="true" alt="1" rel="product_published" class="yes">Yes</a><a id="false" alt="0" rel="product_published" class="no on">No</a></span></td></tr>
                <tr height="25"/>
                <tr class="btn-holder">
                    <td colspan="99">
                        <input type="image" src="/images/btn-save.png" class="img-btn"><a href="<%= admin_products_path %>" class="lnk-btn back">Back</a>
                    </td>
                </tr>
                <tr height="5"/>
            </tbody>
        </table>
        <% end %>
    </div>
<% end %>

ここに私のモデルがあります:

 validates_uniqueness_of :product_code, :message => 'Product code is already taken'
  validates_presence_of :product_code, :message => "Product code is required"
  validates_presence_of :name, :message => "Product name is required"
  validates_uniqueness_of :name, :message => 'Product name is already taken'

ここに私のコントローラーがあります:

def new
    @product = Product.new

    if request.post? and params[:product]
      @product = Product.new(params[:product])
      @product.creator = logged_user['clientID']

      if @product.save
        #render :json => params[:product]
        redirect_to admin_product_show_url(:productID => @product.id), :notice => '<p class="success">You have successfully added a new product '"#{ @product.name }"'</p>'
      end
    end
  end

注:製品とカテゴリはデータベースとは異なるテーブルです....

前もって感謝します..

4

1 に答える 1

0

カテゴリテーブルの製品テーブルにcategory_idのような参照キーが必要であると仮定しています

だからこれを変える

 validates_uniqueness_of :name, :message => 'Product code is already taken'

 validates_uniqueness_of :name, :scope => category_id, :message => 'Product code is already taken'

これにより、特定のカテゴリの製品名の一意性が検証されます

于 2012-07-27T03:36:43.947 に答える