- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在开发一个跟踪基本事件的 Rails 应用程序,我希望扩展它(这是我自己的生活数据跟踪应用程序)。我有一个 EventTemplate 类,它存储 EventTemplateAttributes。创建新事件时,它使用rails-jquery-autocomplete 搜索现有模板并使用哈希值填充表单及其属性。这是该自动完成功能的代码:
def autocomplete_eventtemplate_name
respond_to do |format|
format.json {
@eventtemplates = Eventtemplate.where("name like ?", "%#{params[:term]}%")
render json: json_for_autocomplete_eventtemplates(@eventtemplates)
}
end
end
def json_for_autocomplete_eventtemplates(eventtemplates)
eventtemplates.collect do |eventtemplate|
attributes = Hash.new
unless eventtemplate.templateattributes.empty?
eventtemplate.templateattributes.each do |templateattribute|
attributes[templateattribute.id] = [templateattribute.name,templateattribute.value,templateattribute.unit]
end
end
hash = {"id" => eventtemplate.id.to_s, "value" => eventtemplate.name,"eventattributes" => attributes}
hash
end
end
这是我的表格:
<%= simple_form_for(@event) do |f| %>
<% if @event.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@event.errors.count, "error") %> prohibited this event from being saved:</h2>
<ul>
<% @event.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<% if @event.new_record? %>
<% #,{:class=>"form-control"} %>
<%= f.autocomplete_field :name, autocomplete_eventtemplate_name_events_path,{:class => "form-control"} %>
<% else %>
<%= f.label :name %><br>
<%= f.text_field :name, class: 'form-control' %>
<% end %>
</div>
<div id="#find-subj"></div>
<table class="table-striped table table-bordered">
<thead>
<td>Name</td>
<td>Value</td>
<td>Unit</td>
<td></td>
</thead>
<tbody id=eventattributes>
<tr>
<%= f.simple_fields_for(:eventattributes, :wrapper => false) do |tattribute| %>
<% if modal == false%>
<%= render 'eventattribute_fields', :f => tattribute %>
<% end %>
<% end %>
</tr>
</tbody>
</table>
<div class="links">
<%= link_to_add_association f, :eventattributes, :"data-association-insertion-node" => "tbody#eventattributes", :"data-association-insertion-method" => "append", class: 'btn btn-info' do %>
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
<% end %>
</div></br>
<div class="actions">
<%= f.submit class: 'btn btn-primary'%>
<%= link_to 'Cancel', events_path, class: 'btn btn-warning' %>
</div>
<% end %>
这是_eventattribute_fields:
<tr class='nested-fields table'>
<td><%= f.input_field :name ,class: 'form-control'%></td>
<td><%= f.input_field :value, class: 'form-control' %></td>
<td><%= f.input_field :unit, class: 'form-control' %></td>
<td><%= link_to_remove_association f, class: 'btn btn-danger' do %>
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
<% end %></td>
</tr>
如果我从/events/new 添加事件,表单将正确填充 From New Page但是,如果我通过模式窗口添加它们,它会复制这些字段: Modal View
我已经验证传入两个页面的 JSON 不重复,并且它显示相同的 View (/events/new),但不知何故字段被重复。
编辑通过进一步调试,我推断问题发生在我必须填充表单的 cocoon 脚本中。这两种方法分别用于/events/new 和模态窗口。如果模式可以正常工作,我不需要保留新页面。检查控制台输出,我发现每个 cocoon:after-insert 函数仅在各自的页面上触发。它们每个属性也只会触发一次。
$(function() {
var eventtemplate_array;
var modal = false;
$('#event_name').bind('railsAutocomplete.select', function(event, data){
//$('#event_name').bind('change', function(event, data){
console.debug("Template selected...");
attributes = data.item.eventattributes;
console.debug("Removing existing attributes...");
$('.event_eventattribute_destroy').click();
console.debug("Adding attributes...");
for(var id in attributes) {
eventtemplate_array = attributes[id];
$('.add_fields').click();
}
console.debug("Done adding all attribute...");
});
if(!modal){
$('#eventattributes').bind('cocoon:after-insert', function(e, eventattribute) {
console.debug(modal);
eventattribute[0].getElementsByTagName('input')[0].value = eventtemplate_array[0];
eventattribute[0].getElementsByTagName('input')[1].value = eventtemplate_array[1];
eventattribute[0].getElementsByTagName('input')[2].value = eventtemplate_array[2];
});}
$('#newevent-modal').on('shown.bs.modal', function () {
modal = true;
$('input#event_name').bind('railsAutocomplete.select', function(event, data){
attributes = data.item.eventattributes;
$('.event_eventattribute_destroy').click();
for(var id in attributes) {
console.debug(id);
eventtemplate_array = attributes[id];
$('.add_fields').click();
}
eventtemplate_array = ["","",""];
});
$('#eventattributes').bind('cocoon:after-insert', function(e, eventattribute) {
console.debug(modal);
eventattribute[0].getElementsByTagName('input')[0].value = eventtemplate_array[0];
eventattribute[0].getElementsByTagName('input')[1].value = eventtemplate_array[1];
eventattribute[0].getElementsByTagName('input')[2].value = eventtemplate_array[2];
});
});
});
最佳答案
这是一个非常复杂的问题,很难理解。只是为了让我正确理解:您正在使用“自动完成”gem 从模板中获取字段列表,对吧? (只需使用简单的 ajax 调用?)然后使用此 json,在 javascript 中构建表单。所以在这个脚本中,你以某种方式创建了 double ,对吗?这似乎是一种非常复杂的方法,为什么不直接在服务器端渲染表单呢?
无论如何,由于两个页面的 id 是相同的 (input#event_name
),因此在呈现模式时,您实际上会附加事件两次,这就是它在模式上重复的原因页。在处理模态的 show 事件时,最好使用范围选择器,例如 #newevent-modal input#event_name
和 #newevent-modal #eventattributes
。
关于javascript - Cocoon 自动完成模态填充动态字段两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38355950/
是否有更快的算法来计算 (n! modulo m)。在每个乘法步骤都比减少更快。并且有没有比左右二元法更快的算法来计算 (a^p modulo m)。 这是我的代码:n!模数m ans=1 for(i
我有非常简单的代码循环遍历数组中的元素并检查是否index % 2 == 0。如果是这样,它应该改变颜色。 var e = document.getElementById("list").childN
让我简短一点。我正在计算 alert((Math.pow(7,35))%71) 但它给了我 61,而结果必须是 70。怎么了? 最佳答案 正如其他人之前提到的关于使用 Math.pow(7,35) 的
我试图弄清楚如何在汇编中计算模 10,所以我在 gcc 中编译了以下 c 代码,看看它想出了什么。 unsigned int i=999; unsigned int j=i%10; 令我惊讶的是我得到
例如使用以下输入: int num = -100 int divisor = 10 => -100 mod 10 = 0 (Edge-case: negative numbers as inpu
这个问题在这里已经有了答案: Random float number generation (14 个答案) 关闭 9 年前。 在 C++ 中,我希望得到一个随机 float 。据我所知,典型的随机
我试图找到潜在阶乘素数的除数(n!+-1 形式的数),因为我最近购买了 Skylake-X 工作站,我认为我可以使用 AVX512 指令提高一些速度。 算法简单,主要步骤是对同一个除数重复取模。主要是
我有一个保存角度(以度为单位)的变量,该角度可以是正值也可以是负值。我现在需要确保该数字仅在 0 到 360 之间。该数字是 double 。 执行此操作的好算法是什么?简单地执行角度 % 360 是
我有一个 UInt8 数组,我想计算 CheckSum8 模 256。如果字节总和小于 255,checkSum 函数返回正确的值。 例如 let bytes1 : [UInt8] = [1, 0xa
使用海湾合作委员会: printf("%i \n", -1 % (int)4); printf("%u \n", -1 % (unsigned int)4); 输出: -1 3 我可以跨平台依赖这种行
我无法理解代码中几行的含义。我最近开始学习 C++,并阅读了 Bjarne Stroustrup 的“编程:使用 C++ 的原理和实践”。第四章有个问题让我很困惑,所以我在网上搜索了一个解决方案以供引
我试图解决一个涉及大阶乘模质数的问题,并在另一个人的解决方案中发现了以下算法: long long factMod (long long n, long long p) { long long
我正在尝试计算 𝐹𝑛 模 𝑚,其中 𝑛 可能非常大:高达 10^18,𝐹𝑛 是第 n 个斐波那契数这是我的代码,它适用于小数字,但对于大数字,它会抛出 OutOfMemoryError 或
我有两个以 16 为模的循环整数,因此它们的值介于 0 和 15 之间。 我需要比较两个数字以确定 n_1 是否大于 n_0 n_1 > n_0 很明显,这个没有准确定义,所以我定义n_1如果小于前面
我一直在尝试使用 Java 处理一些更大的值,但遇到了一些我不理解的问题。出于某种原因,Java 似乎喜欢给我垃圾数据(尽管,我更可能告诉它给我垃圾数据) 这是一个片段,为清楚起见进行了编辑:
好吧,我今天做了一个小函数,它应该会生成一个随机字符串。 std::string randString(size_t length) { std::string randStr; fo
Ruby 的负数取模规则不明确。在 IRB 中: -7 % 3 == 2 应该是1!为什么? 最佳答案 因为 -7/3 在 Ruby 的整数除法语义下是 -3。 3*-3 是 -9,所以会留下 2
这个问题在这里已经有了答案: Calculating pow(a,b) mod n (14 个答案) 关闭 6 年前。 在 Javascript 中是否有获取大数模数的技巧。我用 modulo(7,
此代码使用公式 (a^x) % 101 检查值 a 是否唯一映射到值 1 到 100 local function f(a) found = {} bijective = true
在《Core Java Volume1》一书中有一条警告: CAUTION: The right-hand side argument of the shift operators is reduce
我是一名优秀的程序员,十分优秀!