保存不起作用,狂欢自定义方法

时间:2015-03-25 16:40:32

标签: ruby-on-rails save spree

我正在使用我的spree rails应用程序,出于某些原因,我正在制作一些自定义方法。我在ProductsController中创建了一个新的和创建方法,但最后一个没有正常工作,它没有将数据保存在我的数据库中,我无法理解为什么。

这是我的控制者:

module Spree
  class ProductsController < Spree::StoreController
    before_action :load_product, only: :show
    before_action :load_taxon, only: :index

    rescue_from ActiveRecord::RecordNotFound, :with => :render_404
    helper 'spree/taxons'

    respond_to :html

    def index
      @searcher = build_searcher(params.merge(include_images: true))
      @products = @searcher.retrieve_products
      @taxonomies = Spree::Taxonomy.includes(root: :children)
    end

    #########################################by_cjdc#############################################################

    def newproduct

      @product = Product.new();

      #render '/spree/home/newproduct'

    end

    def createproduct

      @name = params[:product][:name];
      @description = params[:product][:description];


      @product = Product.new({
                                 :id => 4,
                                 :name => @name,
                                 :description => @description});

      @product.save();

      if @product.save()
        redirect_to "/tutienda", :notice => "El producto ha sido insertado";
      else
        render '/spree/products/newproduct'
      end

    end

    ######################################################################################################

    def show
      @variants = @product.variants_including_master.active(current_currency).includes([:option_values, :images])
      @product_properties = @product.product_properties.includes(:property)
      @taxon = Spree::Taxon.find(params[:taxon_id]) if params[:taxon_id]
    end

    private
    def accurate_title
      if @product
        @product.meta_title.blank? ? @product.name : @product.meta_title
      else
        super
      end
    end

    def load_product
      if try_spree_current_user.try(:has_spree_role?, "admin")
        @products = Product.with_deleted
      else
        @products = Product.active(current_currency)
      end
      @product = @products.friendly.find(params[:id])
    end

    def load_taxon
      @taxon = Spree::Taxon.find(params[:taxon]) if params[:taxon].present?
    end
  end
end

我的方法是新产品和创造产品。我甚至在@ product.save之前尝试过whitn和abort以查看对象中的whats,并且对象有数据但是DB没有得到它。 (抱歉我的英语不好)。

1 个答案:

答案 0 :(得分:0)

首先,你真的不需要; 在每一行之后,ror并不需要这样做。

如果数据没有保存到数据库,那么你应该确保有任何验证失败。现在如何检查哪个验证不允许保存。要知道使用bang方法和save。

save -> save!

!如果任何验证失败,bang方法将抛出异常。 然后只需检查错误并修复它。