我是 ruby on rails 的新手。我想从模型中填充下拉列表
<%= collection_select(nil, :entity_id, @entity, :id, :name,
{:prompt => "Select an Entity"}, {:id => 'entity_select'}) %>
基于另一个下拉列表
<%= collection_select(nil, :project_id, @projects, :id, :name,
{:prompt => "Select a Project"} %>
在选择项目时,需要在下拉列表中显示相应的实体,但我会显示实体表中的所有实体。我不知道 Ajax 。还有其他简单的方法吗?