现在我正在使用rails构建项目管理应用程序,这里有一些背景信息:
现在我有2个型号,一个是用户,另一个是客户端。客户端和用户具有一对一的关系(客户端 - > has_one和用户 - > belongs_to,这意味着它在用户表中的外键)
所以我想要做的就是一旦你添加了一个客户端,你实际上可以向该客户端添加凭据(添加一个用户),为了这样做,所有的客户端都显示有该客户端名称旁边的链接这意味着您实际上可以为该客户创建凭据。
所以为了做到这一点,我正在使用帮助器链接到这样的帮助器。
<%= link_to "Credentials",
{:controller => 'user', :action => 'new', :client_id => client.id} %>
意思是他的网址将是这样构建的:
http://localhost:3000/clients/2/user/new
为ID为2的客户创建用户。
然后将信息捕获到控制器中,如下所示:
@user = User.new(:client_id => params[:client_id])
编辑:这是我目前在视图/控制器和路径中的内容
我一直收到此错误:没有路由将“/ clients // user”与{:method =&gt;:post}匹配
ActionController::Routing::Routes.draw do |map|
map.resources :users
map.resources :clients, :has_one => :user
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
end
class UsersController < ApplicationController
before_filter :load_client
def new
@user = User.new
@client = Client.new
end
def load_client
@client = Client.find(params[:client_id])
end
def create
@user = User.new(params[:user])
@user.client_id = @client.id
if @user.save
flash[:notice] = "Credentials created"
render :new
else
flash[:error] = "Credentials created failed"
render :new
end
end
<% form_for @user, :url => client_user_url(@client) do |f| %>
<p>
<%= f.label :login, "Username" %>
<%= f.text_field :login %>
</p>
<p>
<%= f.label :password, "Password" %>
<%= f.password_field :password %>
</p>
<p>
<%= f.label :password_confirmation, "Password Confirmation" %>
<%= f.password_field :password_confirmation %>
</p>
<%= f.submit "Create", :disable_with => 'Please Wait...' %>
<% end %>
答案 0 :(得分:0)
您的表单标记错误,您在没有/users
的情况下发布到:client_id
。
试试这个:
<% form_for @user, :url => {:controller => 'users', :action => 'new', :client_id => @client.id} do |f| >
或者,您可以使用嵌套资源:
<强>配置/ routes.rb中强>
map.resources :clients do |clients|
clients.resources :users
end
<强>控制器强>
class UsersController < ApplicationController
before_filter :load_client
def load_client
@client = Client.find(params[:client_id])
end
# Your stuff here
end
查看强>
<% form_for [@client, @user] do |f| %>
答案 1 :(得分:0)
我通过在创建客户端时使用嵌套属性(通过包含用户模型)解决了这个问题。它完美无缺。
如果你们中的任何人需要更多信息,这两个截屏视频帮我提出了解决方案: