简体   繁体   English

Rails - paperclip - NoMethodError

[英]Rails - paperclip - NoMethodError

I'm trying to make a create product page in rails. 我正在尝试在rails中创建一个创建产品页面。 This includes adding multiple images and text fields. 这包括添加多个图像和文本字段。 I have one model for products and one for photos. 我有一个产品型号和一个照片。 I'm using the paperclip gem for photo upload. 我正在使用paperclip gem进行照片上传。 But I get this error when I try to create a new product. 但是当我尝试创建新产品时,我收到此错误。 PS I use HAML. PS我使用HAML。

NoMethodError in Products#new 产品中的NoMethodError#new

Showing /some_app/app/views/products/new.html.haml where line #33 raised: 

undefined method `photo' for :product:Symbol

Extracted source (around line #33): 

33:     = f.file_field :product.photo, multiple: 'multiple'

products/new.html.haml 产品/ new.html.haml

%h1 
  create item
= form_for @product, :html => { :multipart => true } do |f|
  - if @product.errors.any?
    .error_messages
      %h2 Form is invalid
      %ul
        - for message in @product.errors.full_messages
          %li
            = message
  %p
    = f.label :name
    = f.text_field :name
  %p
    = f.file_field :product.photo, multiple: 'multiple'
  %p.button

Products controller 产品控制器

class ProductsController < ApplicationController
  def new
    @product = Product.new
    @photo = Photo.new
  end

  def create  
  @photo = current_user.photos.build(params[:photo])
  5.times { @product.photos.build }
  @product = current_user.products.build(params[:product])
    if @product.save
        render "show", :notice => "Sale created!"
    else
        render "new", :notice => "Somehting went wrong!"
    end
end

Product model 产品型号

class Product < ActiveRecord::Base
  attr_accessible :description, :name, :price, :condition, :ship_method, :ship_price, :quantity, :photo
  has_attached_file :photo

  belongs_to :user

  validates :user_id, presence: true
  validates :name, presence: true, length:  { minimum: 5 }
end

Photo model 照片模型

class Photo < ActiveRecord::Base
  attr_accessible :product_id

  belongs_to :product
  has_attached_file :image,
    :styles => {
      :thumb=> "100x100#",
      :small  => "300x300>",
      :large => "600x600>"
        }
end

The syntax isn't correct - change: 语法不正确 - 更改:

= f.file_field :product.photo, multiple: 'multiple'

To: 至:

= f.file_field :photo, multiple: 'multiple'

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM