- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Rails 4 应用程序,我在其中使用 Jquery-select2 作为下拉列表。我有两个下拉菜单,我希望第一个下拉菜单中的选择确实决定了用户可以在第二个下拉菜单中选择的内容。有点像选择一个国家/地区并获得该国家/地区的州列表。
在我的应用程序中,我有人口统计和响应模型。当有人选择人口统计时,我想使用该人口统计的适当项目填充响应列表。
在开始使用 Select2 之前我就已经开始工作了。但是,我忽略了如何让它与 Select2 一起工作的一些细微差别。我很喜欢 Rails,但 Javascript 和 Jquery 是我的弱点。
这是我的表格:
<form>
<%= f.label :demographic %><br>
<%= select_tag "demographics", options_from_collection_for_select(@demographic, "id", "demographic_name"), id: "simple-example" %></br></br>
<%= f.label :operator %><br>
<%= select_tag "operators", options_from_collection_for_select(@operator, "id", "name"), id: "operator" %></br></br>
<%= f.label :response %><br>
<%= select_tag "responses", options_from_collection_for_select(@response, "id", "name"), id: "response" %></br></br>
<%= f.label :operator_selection %><br>
<%= select_tag "operator_selections", options_from_collection_for_select(@operator_selection, "id", "name"), id: "operator_selection" %></br></br>
</form>
这是我发现并修改的一些 CoffeeScript,并且在 Select2 之前就可以使用:
jQuery ->
responses = $('#query_response_id').html()
$('#query_demographic_id').change ->
demographic = $('#query_demographic_id :selected').text()
escaped_demographic = demographic.replace(/([ #;&,.+*~\':"!^$[\]()=>|\/@])/g, '\\$1')
options = $(responses).filter("optgroup[label='#{escaped_demographic}']").html()
if options
$('#query_response_id').html(options)
$('#query_response_id').parent().show()
else
$('#query_response_id').empty()
$('#query_response_id').parent().hide()
我在 Select2 之前使用的响应模型下拉列表的代码行是:
<%= f.grouped_collection_select :response_id, Demographic.order(:demographic_name), :responses, :demographic_name, :id, :name, include_blank: :true %>
当我看到它时,我似乎需要将 :responses, :demographic_name,
移动到这一行:
<%= select_tag "responses", options_from_collection_for_select(@response, "id", "name"), id: "response" %>
但是,我所尝试的一切都失败了。我看过this和 this和 this ,但它们都与 Rails 无关,所以我陷入困境。
有什么想法吗?
非常感谢所有帮助。
最佳答案
从最简单的情况开始:首先,让表单在没有 Select2 或 Chosen 等的情况下工作。只需使用基本的选择下拉菜单,即可查看正在发生的情况。
根据您的情况,您可以加载所有人口统计数据,并为响应创建一个空选择:
<%= form_tag("/test") do |f| %>
<%= select_tag "demographic", options_from_collection_for_select(@demographic, "id", "name"), id: "demographic", class: "chosen" %><br>
<%= select_tag "responses", "", id: "responses", class: "chosen" %>
<% end %>
然后,当选定的人口统计发生变化时,您可以通过 ajax 更新响应选项:
$(document).ready(function() {
// Listen for the demographic changing
$('#demographic').change(function(){
// Grab the id of currenly selected demographic
var demographic_id = $(this).val();
// Query the responses for this demographic:
$.get( "/responses.json", { demographic_id: demographic_id }, function( data ) {
// Remove the existing options in the responses drop down:
$("#responses").html("");
// Loop over the json and populate the Responses options:
$.each( data, function( index, value ) {
$("#responses").append( "<option value='" + value.id + "'>" + value.name + "</option>" );
});
});
});
});
最后,您只需要在 ResponsesController 上执行一个索引操作即可为您提供选择框的 json。您需要以下格式的 JSON。
[{"id":2,"name":"Direct Request - Telecommunication"},{"id":3,"name":"Direct Request - Internet/Electronic"},{"id":4,"name":"Company Request - Written"}]
这个操作应该给你类似的东西:
class ResponsesController < ApplicationController
def index
@responses = Response.order(:name)
@responses = @responses.where(demographic_id: params[:demographic_id]) if params[:demographic_id].present?
# You don't need this respond to block if you have a jbuilder view set up at app/views/responses/index.json.jbuilder
respond_to do |format|
format.json { render json: @responses }
end
end
end
现在,当您的人口统计在第一个选择中发生变化时,您应该在第二个选择中获得过滤后的响应列表。如果这有效,您现在可以添加您选择的 JQuery 插件。我个人更喜欢Chosen选择2。
要在上述情况下选择工作,您只需稍微修改 Javascript:
$(document).ready(function() {
// Attach the chosen behaviour to all selects with a class of "chosen"
$('.chosen').chosen();
$('#demographic').change(function(){
var selected_demographic = $(this).val();
// Query the responses for this demographic:
$.get( "/responses.json", { demographic_id: selected_demographic }, function( data ) {
// Remove the existing options in the responses drop down:
$("#responses").html("");
// Loop over the new response json and populate the select list:
$.each( data, function( index, value ) {
$("#responses").append( "<option value='" + value.id + "'>" + value.name + "</option>" );
});
// Now reset chosen, with the new options:
$("#responses").trigger("chosen:updated");
});
});
});
关于jquery - jquery-select2 的依赖下拉内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33617331/
我在 gobject 上阅读了一个维基百科页面,上面写着, Depending only on GLib and libc, GObject is a cornerstone of GNOME and
如何注册一个依赖属性,其值是使用另一个依赖属性的值计算的? 由于 .NET 属性包装器在运行时被 WPF 绕过,因此不应在 getter 和 setter 中包含逻辑。解决方案通常是使用 Proper
我一直在尝试将 ActionbarSherlock maven 依赖项添加到我的项目中 com.actionbarsherlock library 4.2.0 在我的 po
http://tutorials.jenkov.com/ood/understanding-dependencies.html#whatis说(强调我的): Whenever a class A us
我对所有这些魔法有点不清楚。 据我了解,依赖属性是从 DependencyObject 继承的,因此存储值: 如果分配了值(在本地字典中),则在实例本身中 或者如果未指定值,则从指向父元素的链接中获取
我刚刚更新了在 ASP.NET Framework 4.5.2 版上运行的 MVC Web 应用程序。我正在使用 Twilio 发送 SMS 消息: var twilio = new TwilioRe
我刚刚发现了一件令人生畏的事情。 spring 依赖坐标有两个版本。 项目依赖于 spring mvc 和 spring flow。有两组并行的依赖项。 Spring MVC 具有以下方案的依赖项
我正在尝试包含 的 maven 依赖项 org.jacorb jacorb 2.3.1 依赖已解决,但它导致另一个依赖 picocontainer 出现问题: [ERROR
我正在尝试在 Haskell 项目中包含特定版本的库。该库是住宿加早餐型的(用于 martix 操作),但我需要特定的 0.4.3 版本,该版本修复了乘法实现的错误。 所以,我的 stack.yaml
有谁知道如何制作依赖的 UIPickerView.例如,当我选择组件一的第 2 行时,组件二的标题会发生变化吗? 我在互联网上查找过,没有真正的答案,我尝试过使用 if 和 switch 语句,但它们
我正在编写一个用于验收测试的项目,由于各种原因,这依赖于另一个打包为 WAR 的项目。我已成功使用 maven-dependency-plugin 解压 WAR,但无法让我的项目包含解压的 WEB-I
或多或少我在 session 上大量构建我的网站(特别是重定向用户等),我很好奇这是否是一种危险的做法。禁用浏览器 cookie 保存的用户的大致比例是多少?我愿意接受任何建议:) 谢谢 最佳答案 s
开始玩 Scala futures,我被依赖的 futures 困住了。 让我们举个例子。我搜索地点并获得 Future[Seq[Place]]。对于这些地点中的每一个,我搜索最近的地铁站(该服务返回
或多或少我在 session 上大量构建我的网站(特别是重定向用户等),我很好奇这是否是一种危险的做法。禁用浏览器 cookie 保存的用户的大致比例是多少?我愿意接受任何建议:) 谢谢 最佳答案 s
我有一个二进制文件,需要一些 *.so 文件才能执行。现在,当我尝试在一些旧机器上执行它时,它会显示 /lib/libc.so.6: version `GLIBC_2.4' not found 如何将
我尝试使用 Dygraph 来表示图表,我在 https://github.com/danvk/dygraphs 中找到了代码,但是它有太多的依赖文件,我觉得很烦人。是否有一个文件可以容纳所有必需的
我正在处理一个 javascript 文件,该文件 a) 声明一个具有函数的对象,并且 b) 使用它期望在外部声明的散列调用该对象的 init 函数。我的 Jasmine 规范提示它找不到哈希,因为它
最近我一直在学习 Angular 并且进展顺利,但是关于依赖注入(inject)的一些事情我仍然不清楚。 是否有任何理由在我的 app.js 文件中声明我的应用程序的其他部分(服务、 Controll
考虑一个名为 foo 的表,它有 id (PRIMARY & AUTO_INCREMENT) 列。我正在向该表中插入一行,挑战从此时开始。 $db->query("INSERT INTO `foo`
我正在使用级联下拉 jquery 插件。 (https://github.com/dnasir/jquery-cascading-dropdown) 我有两个下拉菜单。 “客户端”和“站点”。 根据您
我是一名优秀的程序员,十分优秀!