嗨,我在我的 Rails 应用程序上使用 gem“nested_form”。实际上,当我在文档中找到这个时,我很高兴:
Enhanced jQuery JavaScript template
You can override default behavior of inserting new subforms into your form. For example:
window.nestedFormEvents.insertFields = function(content, assoc, link) {
return $(link).closest('form').find(assoc + '_fields').append($(content));
}
我需要这样做,所以我去了 application.js,我在那里看到了 require jquery_nested_form .. 所以我去了“vendor/assets/javascript”,我想我会在那里找到文件,但没有!,我找不到文件
jquery_nested_form.js
我需要找到它来编辑它,对吧?还是我错过了更简单的方法?
另外,如果我只想“覆盖表单的 1 个 ID 中的默认行为”而不是所有字段,文档在这里http://rubydoc.info/gems/nested_form/0.3.2/frames
但我不知道如何做我需要的..