我有许多具有一种状态的用户。由于某种原因,我无法使用状态控制器中的创建操作来保存状态。我认为问题在于有一个关联,因为我是新手,但我可能很容易出错。
这现在是工作代码。
用户模型:
has_one :status, dependent: :destroy
状态模型:
attr_accessible :content
belongs_to :user
validates :user_id, presence: true
validates :content, presence: true, length: { maximum: 250 }
状态控制器:
def create
@new_status = current_user.build_status(param[:status])
if @new_status.save
flash[:success] = "Status posted!"
redirect_to :back
else
flash[:error] = "Status couldn't save"
redirect_to :back
end
end
用户控制器:
def show
@user = User.find(params[:id])
@status = @user.status
@new_status = current_user.build_status
end
用户/节目:
<%= render 'shared/status_form' if @user == current_user %>
共享/状态表格:
<%= form_for[@new_status], :url => user_status_path(current_user) do |f| %>
<%= render 'shared/error_messages', object: f.object %>
<div class="field">
<%= f.text_area :content, id:"status_box", placeholder: "Status?" %>
</div>
<%= f.submit "Update", id:"status_btn", class: "btn btn-small btn-primary" %>
<% end %>
路线:
resources :users do
resource :status, only: [:create, :destroy]
end
我知道这有很多东西要看,但我真的很感谢你的帮助,谢谢。