我正在尝试使用咖啡脚本让多个 Select2 标记字段在同一页面上工作并且失败:(
我从这个开始;
$(document).on "ready page:load",(
-> $("#text_field_1").select2
tags: ["A", "B", "C"]
-> $("#text_field_2").select2
tags: ["1", "2", "3"]
)
没有喜悦:(我现在就这样工作;
text_field_1 = ->
$("#text_field_1").select2
tags: ["A", "B", "C"]
text_field_2 = ->
$("#text_field_2").select2
tags: ["1", "2", "3"]
$(document).ready(text_field_1)
$(document).on('page:load', text_field_1)
$(document).ready(text_field_2)
$(document).on('page:load', text_field_2)
但这感觉不是一个很好的解决方案。谁能提供任何替代方案或告诉我我做错了什么?