0

我正在做一个授权应用程序,其中: -具有管理员角色,可以管理所有内容。-拥有访客角色,可以创建帖子并编辑他创建的帖子。

我面临着客人角色的问题。我已经完成了以下关联:-posts belongs_to user(在帖子模型中,在迁移中我也有 user_id 属性,我已经引用了用户的帖子)-user has_many 帖子。

当我尝试创建新帖子时,user_id 为零。我不知道如何在 Post 对象中设置 user_id 属性。

类 ProductsController < ApplicationController

before_filter :self_load, :only=>[:show,:edit,:update,:destroy]

before_filter :authenticate_user, :only=>[:edit,:update,:destroy]

def index
 @products=Product.find(:all)
end

def new 
 @product=Product.new(:user_id=>current_user.id)
end


def create
 @product=Product.new(params[:product])
 if @product.save
    redirect_to root_url, :notice=>'New Product has been added'
 else
    render :action=>'new'

 end
end  

def show
end

def edit
end

def update

if @product.update_attributes(params[:product])
     redirect_to root_url, :notice=>'Product has been updated.'
  else
     render :action => 'edit'
  end
end


def destroy

 @product.destroy
 redirect_to root_url    
end

def self_load
 @product = Product.find(params[:id])
end

def authenticate_user
 if current_user
 else
   redirect_to root_url, :notice=>'You are not authorised to access'
 end
end
end

看法:

添加产品

<%= form_for(@product) 做 |f| %> <% 如果@product.errors.any? %>

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

<table>

<tr><td><%= f.label 'Title:' %></td>
   <td><%= f.text_field :title %></td>

<tr><td><%= f.label 'Description:' %></td>
  <td><%= f.text_area :description,:rows=>10 %></td></tr>

<tr><td><%= f.label 'Price:' %></td>
   <td><%= f.text_field :price %></td></tr>

<tr><td><%= f.submit 'Save' %></td></tr>
</table>

<% end %>
<%= link_to 'Back', root_url %>

模型类 Product < ActiveRecord::Base

 belongs_to :user 

 attr_accessible :title, :description, :price, :user_id

 validates_presence_of :title, :description, :price

 validates_uniqueness_of :title

 validates_length_of :title, :in=>4..10

 validates_length_of :description, :minimum=>10

 validates_numericality_of :price
end

请帮我解决这个问题......如果你需要任何进一步的信息,你可以问......

4

1 回答 1

1

如果只有登录用户可以创建产品,试试这个

class ProductsController < ApplicationController
  def create
    @product =  current_user.products.build params[:product]

    if @product.save
      # Stuff is product save succesfully
    else
      # Stuff is product does not saved
    end

  end
end
于 2013-04-24T10:26:56.443 回答