我需要调用rails helper方法并将值作为数组获取,以便javascript可以处理它。是否可以在javascript中调用rails helper。我想在我的应用程序中集成jquerys自动完成功能。请找到以下代码。
$(document).ready(function () {
//**Here the rails helper method will get the list of items**
function split(val) {
return val.split(/,\s*/);
}
function extractLast(term) {
return split(term).pop();
}
$("#tags")
// don't navigate away from the field on tab when selecting an item
.bind("keyup", function (event) {
if (event.keyCode === $.ui.keyCode.TAB && $(this).data("autocomplete").menu.active) {
event.preventDefault();
}
}).autocomplete({
minLength: 0,
source: function (request, response) {
// delegate back to autocomplete, but extract the last term
response($.ui.autocomplete.filter(
availableTags, extractLast(request.term)));
},
focus: function () {
// prevent value inserted on focus
return false;
},
select: function (event, ui) {
var terms = split(this.value);
// remove the current input
terms.pop();
// add the selected item
terms.push(ui.item.value);
// add placeholder to get the comma-and-space at the end
terms.push("");
this.value = terms.join(", ");
return false;
}
});
});
答案 0 :(得分:0)
我认为在JavaScript文件中使用Rails帮助程序并不简单。
但是,您可以通过将这些列表/数组放在标记中的脚本标记内,或者将它们添加为data-attributes,以便稍后可以通过JavaScript获取,将它们提供给JS。另一个解决方案是使用Gon gem作为评论。