0

所以这就是问题所在。我最近开始使用 ruby​​ 作为编程语言,我想知道如何使用会话中的名称(当有人登录时)通过表单发送。

我安装了设计和简单的表格,希望能完成它,但它没有用。我的第一个想法是使用这段代码向用户发送表单:

<%= f.hidden_field :name, :placeholder => current_user %>

提前致谢!

Edit1 - 控制器代码:

class HomeController < ApplicationController
   def index
   end
end
4

1 回答 1

0

在控制器的新建编辑操作中,您可以将值 current_user 分配给字段,对象的名称

就像是:

# in New action
@controller = Controller.new
@controller.name = current_user.name
于 2013-01-12T21:59:01.137 回答