并提前感谢您的帮助。
我有一个业务开发应用程序,它在应用程序的一个区域中允许用户滚动浏览其业务客户端列表(客户端列表),这是select标记。
但是,为了让应用程序了解用户的客户是谁,用户需要告诉应用程序该信息。
我的具体问题是:确切地说,您如何允许用户将项目添加到选择标记,或者他们可以选择下拉列表(选择其中一个选项)。尽可能详细说明。
Here is the index page where I'm displaying the select tag. The options, have to come from the user.
<div align="left"><%= DateTime.now.strftime('%m/%d/%Y') %></div>
<div align="center"><%= "WELCOME TO DEFINITION, RYAN" %></br></br>
<div align="center"><%= "SALIENCE9 CORPORATION" %></br>
</br><div align="center"><%= image_tag "ryan_bottom_footer.png" %></div></br>
<%= select_tag "Current Clients", options_for_select([ @client_list, "client1", "client2", "client 3" ]) %>
<%= submit_tag(value = "Save changes", options = {}) %>
<%= link_to 'Current Clients', :controller => 'current_clients', :action => 'index' %> </br></br></br></br>
<%= link_to "Define", :controller => 'define_categories', :action => 'index' %> </br>
<%-#this should link to final stored action items %>
<%= link_to "Archived Action Items", :controller => 'questions', :action => 'display_modes' %></br></br>
<%= link_to "Back Home", :controller => 'home', :action => 'index' %> </br></div> </br></br></br></br></br></br></br></br></br></br></br>
<div align="left"><%= link_to "Switch Categories", :controller => 'define_categories', :action => 'index' %> </div></br>
我甚至创造了一个&#34;当前的客户&#34;模型,知道这可能是在正确的轨道上。其中没有任何内容。
class CurrentClient < ActiveRecord::Base
end
在我非常业余的铁轨理解中,这是我需要更多学习和更多阅读的地方。我理解视图,控制器,路线等模型,以及这类东西,我还在兜售。
谢谢!